forked from zhulik/gruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gc_test.go
48 lines (32 loc) · 899 Bytes
/
gc_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
package gruby_test
import (
"testing"
. "github.com/onsi/gomega"
"github.com/zhulik/gruby"
)
func TestEnableDisableGC(t *testing.T) {
t.Parallel()
g := NewG(t)
grb := gruby.Must(gruby.New())
defer grb.Close()
grb.FullGC()
grb.DisableGC()
_, err := grb.LoadString("b = []; a = []; a = []")
g.Expect(err).ToNot(HaveOccurred())
orig := grb.LiveObjectCount()
grb.FullGC()
g.Expect(grb.LiveObjectCount()).To(Equal(orig), "Object count was not what was expected after full GC")
grb.EnableGC()
grb.FullGC()
g.Expect(grb.LiveObjectCount()).To(Equal(orig-1), "Object count was not what was expected after full GC")
}
func TestIsDead(t *testing.T) {
t.Parallel()
g := NewG(t)
grb := gruby.Must(gruby.New())
val, err := grb.LoadString("$a = []")
g.Expect(err).ToNot(HaveOccurred())
g.Expect(val.IsDead()).To(BeFalse())
grb.Close()
g.Expect(val.IsDead()).To(BeTrue())
}