xgo/stdlib/rand_test.go

46 lines
1.4 KiB
Go
Raw Normal View History

2019-02-09 23:33:35 +03:00
package stdlib_test
import (
"math/rand"
"testing"
2019-12-30 00:38:51 +03:00
"github.com/d5/tengo/v2"
"github.com/d5/tengo/v2/require"
2019-02-09 23:33:35 +03:00
)
func TestRand(t *testing.T) {
var seed int64 = 1234
r := rand.New(rand.NewSource(seed))
2019-12-20 22:40:38 +03:00
module(t, "rand").call("seed", seed).expect(tengo.UndefinedValue)
2019-02-09 23:33:35 +03:00
module(t, "rand").call("int").expect(r.Int63())
module(t, "rand").call("float").expect(r.Float64())
module(t, "rand").call("intn", 111).expect(r.Int63n(111))
module(t, "rand").call("exp_float").expect(r.ExpFloat64())
module(t, "rand").call("norm_float").expect(r.NormFloat64())
module(t, "rand").call("perm", 10).expect(r.Perm(10))
buf1 := make([]byte, 10)
2019-12-20 22:40:38 +03:00
buf2 := &tengo.Bytes{Value: make([]byte, 10)}
2019-02-09 23:33:35 +03:00
n, _ := r.Read(buf1)
module(t, "rand").call("read", buf2).expect(n)
2019-12-20 22:40:38 +03:00
require.Equal(t, buf1, buf2.Value)
2019-02-09 23:33:35 +03:00
seed = 9191
r = rand.New(rand.NewSource(seed))
randObj := module(t, "rand").call("rand", seed)
2019-12-20 22:40:38 +03:00
randObj.call("seed", seed).expect(tengo.UndefinedValue)
2019-02-09 23:33:35 +03:00
randObj.call("int").expect(r.Int63())
randObj.call("float").expect(r.Float64())
randObj.call("intn", 111).expect(r.Int63n(111))
randObj.call("exp_float").expect(r.ExpFloat64())
randObj.call("norm_float").expect(r.NormFloat64())
randObj.call("perm", 10).expect(r.Perm(10))
buf1 = make([]byte, 12)
2019-12-20 22:40:38 +03:00
buf2 = &tengo.Bytes{Value: make([]byte, 12)}
2019-02-09 23:33:35 +03:00
n, _ = r.Read(buf1)
randObj.call("read", buf2).expect(n)
2019-12-20 22:40:38 +03:00
require.Equal(t, buf1, buf2.Value)
2019-02-09 23:33:35 +03:00
}