-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathfloat_math_test.go
93 lines (79 loc) · 2.5 KB
/
float_math_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
// Copyright 2014 SteelSeries ApS. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// This package implements a basic LISP interpretor for embedding in a go program for scripting.
// This file tests built-in primitive functions.
package golisp
import (
"fmt"
. "gopkg.in/check.v1"
"math"
)
type closeChecker struct {
*CheckerInfo
}
// The Close checker verifies that the obtained value is within a tolerance of
// the expected value.
//
// For example:
//
// c.Assert(value, Close, 42, 0.01)
//
var Close Checker = &closeChecker{
&CheckerInfo{Name: "Close", Params: []string{"obtained", "expected", "tolerance"}},
}
func (checker *closeChecker) Check(params []interface{}, names []string) (result bool, error string) {
defer func() {
if v := recover(); v != nil {
result = false
error = fmt.Sprint(v)
}
}()
return math.Abs(float64(params[0].(float32)-params[1].(float32))) < params[2].(float64), ""
}
type FloatBuiltinsSuite struct {
}
var _ = Suite(&FloatBuiltinsSuite{})
func (s *FloatBuiltinsSuite) SetUpSuite(c *C) {
InitLisp()
}
func (s *FloatBuiltinsSuite) TestFloatAdd(c *C) {
code, _ := Parse("(+ 1.2 2.3)")
result, err := Eval(code, Global)
c.Assert(err, IsNil)
c.Assert(result, NotNil)
c.Assert(int(TypeOf(result)), Equals, FloatType)
c.Assert(FloatValue(result), Close, float32(3.5), 0.01)
}
func (s *FloatBuiltinsSuite) TestFloatSubtract(c *C) {
code, _ := Parse("(- 2.3 1.2)")
result, err := Eval(code, Global)
c.Assert(err, IsNil)
c.Assert(result, NotNil)
c.Assert(int(TypeOf(result)), Equals, FloatType)
c.Assert(FloatValue(result), Close, float32(1.1), 0.01)
}
func (s *FloatBuiltinsSuite) TestFloatSubtractWithNegativeResult(c *C) {
code, _ := Parse("(- 1.2 2.3)")
result, err := Eval(code, Global)
c.Assert(err, IsNil)
c.Assert(result, NotNil)
c.Assert(int(TypeOf(result)), Equals, FloatType)
c.Assert(FloatValue(result), Close, float32(-1.1), 0.01)
}
func (s *FloatBuiltinsSuite) TestFloatMultiply(c *C) {
code, _ := Parse("(* 2.3 1.2)")
result, err := Eval(code, Global)
c.Assert(err, IsNil)
c.Assert(result, NotNil)
c.Assert(int(TypeOf(result)), Equals, FloatType)
c.Assert(FloatValue(result), Close, float32(2.76), 0.01)
}
func (s *FloatBuiltinsSuite) TestFloatDivide(c *C) {
code, _ := Parse("(/ 2.3 1.2)")
result, err := Eval(code, Global)
c.Assert(err, IsNil)
c.Assert(result, NotNil)
c.Assert(int(TypeOf(result)), Equals, FloatType)
c.Assert(FloatValue(result), Close, float32(1.9167), 0.01)
}