-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathCommonQueryBuilderTests.php
More file actions
92 lines (85 loc) · 2.62 KB
/
CommonQueryBuilderTests.php
File metadata and controls
92 lines (85 loc) · 2.62 KB
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
<?php
namespace timgws\test;
use \PHPUnit\Framework\TestCase;
use Illuminate\Database\Connection as Connection;
use Illuminate\Database\Query\Builder;
use Illuminate\Database\Query\Grammars\MySqlGrammar as MySQLGrammar;
use Illuminate\Database\Query\Processors\MySqlProcessor as MySQLProcessor;
use timgws\QueryBuilderParser;
class CommonQueryBuilderTests extends TestCase
{
protected $simpleQuery = '{"condition":"AND","rules":[{"id":"price","field":"price","type":"double","operator":"less","value":"10.25"}]}';
protected $simpleQueryInjection = '{"condition":"ALSO","rules":[{"id":"price","field":"price","type":"double","operator":"less","value":"10.25"},{"id":"price","field":"price","type":"double","operator":"greater","value":"9.25"}]}';
protected $json1 = '{
"condition":"AND",
"rules":[
{
"id":"price",
"field":"price",
"type":"double",
"operator":"less",
"value":"10.25"
},
{
"condition":"OR",
"rules":[
{
"id":"name",
"field":"name",
"type":"string",
"operator":"begins_with",
"value":"Thommas"
},
{
"id":"name",
"field":"name",
"type":"string",
"operator":"equal",
"value":"John Doe"
}
]
}
]
}';
protected function getParserUnderTest($fields = null)
{
return new QueryBuilderParser($fields);
}
/**
* @return Builder
*/
protected function createQueryBuilder()
{
$pdo = new \PDO('sqlite::memory:');
$connection = new Connection($pdo);
return new Builder($connection, new MySQLGrammar($connection), new MySQLProcessor());
}
protected function makeJSONForInNotInTest($operator = 'in')
{
return '{
"condition":"AND",
"rules":[
{
"id":"price",
"field":"price",
"type":"double",
"operator":"less",
"value":"10.25"
},
{
"condition":"OR",
"rules":[{
"id":"category",
"field":"category",
"type":"integer",
"operator":"'.$operator.'",
"value":[
"1", "2"
]}
]
}
]
}
';
}
}