Skip to content

Commit 4117da5

Browse files
committed
Modify insertTests
1 parent a047e4b commit 4117da5

File tree

3 files changed

+14
-98
lines changed

3 files changed

+14
-98
lines changed

tests/JSONDBTest.php

+13-23
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,15 @@
77
class InsertTest extends TestCase {
88
private $db;
99

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' );
1216
}
1317

1418
public function testInsert() : void {
15-
$this->load_db();
1619
$names = [ 'James£', 'John£', 'Oji£', 'Okeke', 'Bola', 'Thomas', 'Ibrahim', 'Smile' ];
1720
$states = [ 'Abia', 'Lagos', 'Benue', 'Kano', 'Kastina', 'Abuja', 'Imo', 'Ogun' ];
1821
shuffle( $names );
@@ -29,17 +32,21 @@ public function testInsert() : void {
2932
'age' => $age
3033
]);
3134

32-
$this->assertArrayHasKey( 0, $indexes );
35+
$user = $this->db->select( '*' )
36+
->from( 'users' )
37+
->where( [ 'name' => $name, 'state' => $state, 'age' => $age ], 'AND' )
38+
->get();
3339

3440
$this->db->insert( "users", array(
3541
"name" => "Dummy",
3642
"state" => "Lagos",
3743
"age" => 12
3844
));
45+
46+
$this->assertEquals( $name, $user[0]['name'] );
3947
}
4048

4149
public function testGet() : void {
42-
$this->load_db();
4350
printf( "\nCheck exist\n" );
4451
$users = ( $this->db->select( '*' )
4552
->from( 'users' )
@@ -48,7 +55,6 @@ public function testGet() : void {
4855
}
4956

5057
public function testWhere() : void {
51-
$this->load_db();
5258
$result = ( $this->db->select( '*' )
5359
->from( 'users' )
5460
->where([ 'name' => 'Okeke' ])
@@ -74,8 +80,6 @@ public function testWhere() : void {
7480
}
7581

7682
public function testMultiWhere() : void {
77-
$this->load_db();
78-
7983
$this->db->insert( "users", array(
8084
"name" => "Jajo",
8185
"age" => null,
@@ -93,8 +97,6 @@ public function testMultiWhere() : void {
9397
}
9498

9599
public function testAND() : void {
96-
$this->load_db();
97-
98100
$this->db->insert( "users", array(
99101
"name" => "Jajo",
100102
"age" => 50,
@@ -114,8 +116,6 @@ public function testAND() : void {
114116
}
115117

116118
public function testRegexAND() : void {
117-
$this->load_db();
118-
119119
$this->db->insert( "users", array(
120120
"name" => "Paulo",
121121
"age" => 50,
@@ -149,8 +149,6 @@ public function testRegexAND() : void {
149149
}
150150

151151
public function testRegex() : void {
152-
$this->load_db();
153-
154152
$this->db->insert( "users", array(
155153
"name" => "Jajo",
156154
"age" => 89,
@@ -172,8 +170,6 @@ public function testRegex() : void {
172170
}
173171

174172
public function testUpdate() : void {
175-
$this->load_db();
176-
177173
$this->db->update([ 'name' => 'Jammy', 'state' => 'Sokoto' ])
178174
->from( 'users' )
179175
->where([ 'name' => 'Okeke' ])
@@ -194,16 +190,12 @@ public function testUpdate() : void {
194190
}
195191

196192
public function testSQLExport() : void {
197-
$this->load_db();
198-
199193
$this->db->to_mysql( "users", "tests/users.sql" );
200194

201195
$this->assertTrue(file_exists( "tests/users.sql" ) );
202196
}
203197

204198
public function testDelete() : void {
205-
$this->load_db();
206-
207199
$this->db->delete()
208200
->from( 'users' )
209201
->where([ 'name' => 'Jammy' ])
@@ -217,9 +209,7 @@ public function testDelete() : void {
217209
$this->assertEmpty( $result );
218210
}
219211

220-
public function testDeleteAll() : void {
221-
$this->load_db();
222-
212+
public function testDeleteAll() : void {
223213
/* I add a select action with where statement */
224214
$result_before = $this->db->select( '*' )
225215
->from( 'users' )

tests/users.json

+1-52
Original file line numberDiff line numberDiff line change
@@ -1,52 +1 @@
1-
[
2-
{
3-
"name": "John£",
4-
"state": "Benue",
5-
"age": 22
6-
},
7-
{
8-
"name": "Jajo",
9-
"age": null,
10-
"state": "Lagos"
11-
},
12-
{
13-
"name": "Johnny",
14-
"age": 30,
15-
"state": "Ogun"
16-
},
17-
{
18-
"name": "Jajo",
19-
"age": 50,
20-
"state": "Lagos"
21-
},
22-
{
23-
"name": "Johnny",
24-
"age": 50,
25-
"state": "Ogun"
26-
},
27-
{
28-
"name": "Paulo",
29-
"age": 50,
30-
"state": "Algeria"
31-
},
32-
{
33-
"name": "Nina",
34-
"age": 50,
35-
"state": "Nigeria"
36-
},
37-
{
38-
"name": "Ogwo",
39-
"age": 49,
40-
"state": "Nigeria"
41-
},
42-
{
43-
"name": "Jajo",
44-
"age": 89,
45-
"state": "Abia"
46-
},
47-
{
48-
"name": "Mitchell",
49-
"age": 45,
50-
"state": "Zamfara"
51-
}
52-
]
1+
[]

tests/users.sql

-23
This file was deleted.

0 commit comments

Comments
 (0)