-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsigma_test.go
184 lines (151 loc) · 3.97 KB
/
sigma_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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/*
Sigma Virtual Machine
Copyright (C) 2016 Dmitry Kolesnikov
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package sigma_test
import (
"reflect"
"testing"
"github.com/kshard/sigma"
"github.com/kshard/sigma/asm"
"github.com/kshard/sigma/ast"
"github.com/kshard/sigma/internal/gen"
"github.com/kshard/xsd"
)
func queryMatchPerson() sigma.Reader {
rules := ast.Rules{
ast.NewFact("f").Tuple("s", "p", "o"),
ast.NewHorn(
ast.NewHead("h").Tuple("s"),
ast.NewExpr("f").
Term("s").
Term("t1", xsd.From("name")).
Term("t2", xsd.From("Ridley Scott")),
),
}
reader, err := sigma.NewReader(asm.NewContext().Add("f", gen.FactsIMDB), "h", rules)
if err != nil {
panic(err)
}
return reader
}
func TestBasicQueryMatchPerson(t *testing.T) {
sequence := queryMatchPerson().ToSeq()
required := [][]any{{"urn:person:137"}}
if !reflect.DeepEqual(sequence, required) {
t.Errorf("got %v required %v", sequence, required)
}
}
func BenchmarkBasicQueryMatchPerson(b *testing.B) {
reader := queryMatchPerson()
for i := 0; i < b.N; i++ {
for {
if err := reader.Read(nil); err != nil {
break
}
}
}
}
func queryMatchMovieByYear() sigma.Reader {
rules := ast.Rules{
ast.NewFact("f").Tuple("s", "p", "o"),
ast.NewHorn(
ast.NewHead("h").Tuple("s", "title"),
ast.NewExpr("f").
Term("s").
Term("t1", xsd.From("year")).
Term("t2", xsd.From(1987)),
ast.NewExpr("f").
Term("s").
Term("t3", xsd.From("title")).
Term("title"),
),
}
reader, err := sigma.NewReader(asm.NewContext().Add("f", gen.FactsIMDB), "h", rules)
if err != nil {
panic(err)
}
return reader
}
func TestBasicQueryMatchMovieByYear(t *testing.T) {
sequence := queryMatchMovieByYear().ToSeq()
required := [][]any{
{"urn:movie:202", "Predator"},
{"urn:movie:203", "Lethal Weapon"},
{"urn:movie:204", "RoboCop"},
}
if !reflect.DeepEqual(sequence, required) {
t.Errorf("got %v required %v", sequence, required)
}
}
func BenchmarkBasicQueryMatchMovieByYear(b *testing.B) {
reader := queryMatchMovieByYear()
for i := 0; i < b.N; i++ {
for {
if err := reader.Read(nil); err != nil {
break
}
}
}
}
func queryDiscoverAllActorsFromMovie() sigma.Reader {
rules := ast.Rules{
ast.NewFact("f").Tuple("s", "p", "o"),
ast.NewHorn(
ast.NewHead("h").Tuple("name"),
ast.NewExpr("f").
Term("m").
Term("t1", xsd.From("title")).
Term("t2", xsd.From("Lethal Weapon")),
ast.NewExpr("f").
Term("m").
Term("t3", xsd.From("cast")).
Term("p"),
ast.NewExpr("f").
Term("p").
Term("t4", xsd.From("name")).
Term("name"),
),
}
reader, err := sigma.NewReader(asm.NewContext().Add("f", gen.FactsIMDB), "h", rules)
if err != nil {
panic(err)
}
return reader
}
func TestBasicQueryDiscoverAllActorsFromMovie(t *testing.T) {
sequence := queryDiscoverAllActorsFromMovie().ToSeq()
required := [][]any{
{"Mel Gibson"},
{"Danny Glover"},
{"Gary Busey"},
}
if !reflect.DeepEqual(sequence, required) {
t.Errorf("got %v required %v", sequence, required)
}
}
func BenchmarkBasicQueryDiscoverAllActorsFromMovie(b *testing.B) {
reader := queryDiscoverAllActorsFromMovie()
for i := 0; i < b.N; i++ {
for {
if err := reader.Read(nil); err != nil {
break
}
}
}
}
func BenchmarkCompileBasicQueryDiscoverAllActorsFromMovie(b *testing.B) {
for i := 0; i < b.N; i++ {
queryDiscoverAllActorsFromMovie()
}
}