-
Notifications
You must be signed in to change notification settings - Fork 0
/
QueryParserSpec.scala
118 lines (114 loc) · 3.77 KB
/
QueryParserSpec.scala
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
package core.ql
import core.ctx.{Connection, QueryExecutionContext}
import org.scalamock.scalatest.proxy.MockFactory
import org.scalatest.flatspec.AnyFlatSpec
class QueryParserSpec extends AnyFlatSpec with MockFactory {
behavior of "QueryParser"
it should "correctly parse query (1)" in {
val in =
"""
|SELECT
| tbl1.id, tbl1.field1,
| tbl2.id, tbl2.field1, tbl2.field2,
| tbl3.id, tbl3.field2, tbl3.field2
|FROM
| tbl1
| JOIN tbl2 ON tbl1.id = tbl2.id
| JOIN tbl3 ON tbl2.id = tbl3.id
|""".stripMargin
val mockConnection = new Connection {
override def fetchNextRow(table: String, projection: Seq[String]): Option[Seq[Any]] = None // just mock
}
implicit val ctx: QueryExecutionContext = new QueryExecutionContext {
override def connection: Connection = mockConnection
}
QueryParser.parse(in) match {
case Left(err) => fail(err)
case Right(parsed) =>
assert(
parsed == Select(
Seq(
FieldID(TableID("tbl1"), "id"),
FieldID(TableID("tbl1"), "field1"),
FieldID(TableID("tbl2"), "id"),
FieldID(TableID("tbl2"), "field1"),
FieldID(TableID("tbl2"), "field2"),
FieldID(TableID("tbl3"), "id"),
FieldID(TableID("tbl3"), "field2"),
FieldID(TableID("tbl3"), "field2")
),
Join(
Table(TableID("tbl1")),
Join(
Table(TableID("tbl2")),
Table(TableID("tbl3")),
Seq(
FieldID(TableID("tbl2"), "id") -> FieldID(TableID("tbl3"), "id")
)
),
Seq(
FieldID(TableID("tbl1"), "id") -> FieldID(TableID("tbl2"), "id")
)
)
)
)
}
}
it should "correctly parse query (2)" in {
val in =
"""
|SELECT
| tbl1.id, tbl1.field1,
| tbl2.id, tbl2.field1, tbl2.field2,
| tbl3.id, tbl3.field2, tbl3.field2
|FROM
| tbl1
| JOIN (SELECT tbl2.id, tbl2.field1, tbl2.field2 FROM tbl2) ON tbl1.id = tbl2.id
| JOIN tbl3 ON tbl2.id = tbl3.id
|""".stripMargin
val mockConnection = new Connection {
override def fetchNextRow(table: String, projection: Seq[String]): Option[Seq[Any]] = None // just mock
}
implicit val ctx: QueryExecutionContext = new QueryExecutionContext {
override def connection: Connection = mockConnection
}
QueryParser.parse(in) match {
case Left(err) => fail(err)
case Right(parsed) =>
assert(
parsed == Select(
Seq(
FieldID(TableID("tbl1"), "id"),
FieldID(TableID("tbl1"), "field1"),
FieldID(TableID("tbl2"), "id"),
FieldID(TableID("tbl2"), "field1"),
FieldID(TableID("tbl2"), "field2"),
FieldID(TableID("tbl3"), "id"),
FieldID(TableID("tbl3"), "field2"),
FieldID(TableID("tbl3"), "field2")
),
Join(
Table(TableID("tbl1")),
Join(
Select(
Seq(
FieldID(TableID("tbl2"), "id"),
FieldID(TableID("tbl2"), "field1"),
FieldID(TableID("tbl2"), "field2")
),
Table(TableID("tbl2"))
),
Table(TableID("tbl3")),
Seq(
FieldID(TableID("tbl2"), "id") -> FieldID(TableID("tbl3"), "id")
)
),
Seq(
FieldID(TableID("tbl1"), "id") -> FieldID(TableID("tbl2"), "id")
)
)
)
)
}
}
}