7
7
class InsertTest extends TestCase {
8
8
private $ db ;
9
9
10
- public function load_db () {
11
- $ this ->db = new JSONDB ( __DIR__ );
10
+ protected function setUp (): void {
11
+ $ this ->db = new JSONDB (__DIR__ );
12
+ }
13
+
14
+ public function tearDown () {
15
+ @unlink ( __DIR__ . '/users.sql ' );
12
16
}
13
17
14
18
public function testInsert () : void {
15
- $ this ->load_db ();
16
19
$ names = [ 'James£ ' , 'John£ ' , 'Oji£ ' , 'Okeke ' , 'Bola ' , 'Thomas ' , 'Ibrahim ' , 'Smile ' ];
17
20
$ states = [ 'Abia ' , 'Lagos ' , 'Benue ' , 'Kano ' , 'Kastina ' , 'Abuja ' , 'Imo ' , 'Ogun ' ];
18
21
shuffle ( $ names );
@@ -29,17 +32,21 @@ public function testInsert() : void {
29
32
'age ' => $ age
30
33
]);
31
34
32
- $ this ->assertArrayHasKey ( 0 , $ indexes );
35
+ $ user = $ this ->db ->select ( '* ' )
36
+ ->from ( 'users ' )
37
+ ->where ( [ 'name ' => $ name , 'state ' => $ state , 'age ' => $ age ], 'AND ' )
38
+ ->get ();
33
39
34
40
$ this ->db ->insert ( "users " , array (
35
41
"name " => "Dummy " ,
36
42
"state " => "Lagos " ,
37
43
"age " => 12
38
44
));
45
+
46
+ $ this ->assertEquals ( $ name , $ user [0 ]['name ' ] );
39
47
}
40
48
41
49
public function testGet () : void {
42
- $ this ->load_db ();
43
50
printf ( "\nCheck exist \n" );
44
51
$ users = ( $ this ->db ->select ( '* ' )
45
52
->from ( 'users ' )
@@ -48,7 +55,6 @@ public function testGet() : void {
48
55
}
49
56
50
57
public function testWhere () : void {
51
- $ this ->load_db ();
52
58
$ result = ( $ this ->db ->select ( '* ' )
53
59
->from ( 'users ' )
54
60
->where ([ 'name ' => 'Okeke ' ])
@@ -74,8 +80,6 @@ public function testWhere() : void {
74
80
}
75
81
76
82
public function testMultiWhere () : void {
77
- $ this ->load_db ();
78
-
79
83
$ this ->db ->insert ( "users " , array (
80
84
"name " => "Jajo " ,
81
85
"age " => null ,
@@ -93,8 +97,6 @@ public function testMultiWhere() : void {
93
97
}
94
98
95
99
public function testAND () : void {
96
- $ this ->load_db ();
97
-
98
100
$ this ->db ->insert ( "users " , array (
99
101
"name " => "Jajo " ,
100
102
"age " => 50 ,
@@ -114,8 +116,6 @@ public function testAND() : void {
114
116
}
115
117
116
118
public function testRegexAND () : void {
117
- $ this ->load_db ();
118
-
119
119
$ this ->db ->insert ( "users " , array (
120
120
"name " => "Paulo " ,
121
121
"age " => 50 ,
@@ -149,8 +149,6 @@ public function testRegexAND() : void {
149
149
}
150
150
151
151
public function testRegex () : void {
152
- $ this ->load_db ();
153
-
154
152
$ this ->db ->insert ( "users " , array (
155
153
"name " => "Jajo " ,
156
154
"age " => 89 ,
@@ -172,8 +170,6 @@ public function testRegex() : void {
172
170
}
173
171
174
172
public function testUpdate () : void {
175
- $ this ->load_db ();
176
-
177
173
$ this ->db ->update ([ 'name ' => 'Jammy ' , 'state ' => 'Sokoto ' ])
178
174
->from ( 'users ' )
179
175
->where ([ 'name ' => 'Okeke ' ])
@@ -194,16 +190,12 @@ public function testUpdate() : void {
194
190
}
195
191
196
192
public function testSQLExport () : void {
197
- $ this ->load_db ();
198
-
199
193
$ this ->db ->to_mysql ( "users " , "tests/users.sql " );
200
194
201
195
$ this ->assertTrue (file_exists ( "tests/users.sql " ) );
202
196
}
203
197
204
198
public function testDelete () : void {
205
- $ this ->load_db ();
206
-
207
199
$ this ->db ->delete ()
208
200
->from ( 'users ' )
209
201
->where ([ 'name ' => 'Jammy ' ])
@@ -217,9 +209,7 @@ public function testDelete() : void {
217
209
$ this ->assertEmpty ( $ result );
218
210
}
219
211
220
- public function testDeleteAll () : void {
221
- $ this ->load_db ();
222
-
212
+ public function testDeleteAll () : void {
223
213
/* I add a select action with where statement */
224
214
$ result_before = $ this ->db ->select ( '* ' )
225
215
->from ( 'users ' )
0 commit comments