Newer
Older
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
<?php
namespace calderawp\CalderaFormsQuery\Tests\Integration\Select;
use calderawp\CalderaFormsQuery\Tests\Integration\IntegrationTestCase;
use calderawp\CalderaFormsQuery\Tests\Traits\CanCreateEntryWithEmailField;
class EntryValuesTest extends IntegrationTestCase
{
use CanCreateEntryWithEmailField;
/**
* Test query by entry ID
*
* @covers EntryValues::queryByEntryId()
*/
public function testQueryByEntryId()
{
$entry = $this->createEntryWithMockForm();
$entryValuesQueryGenerator = $this->entryValuesGeneratorFactory();
$entryValuesQueryGenerator->queryByEntryId($entry['id']);
$sql = $entryValuesQueryGenerator->getPreparedSql();
$results = $this->queryWithWPDB($sql);
$this->assertTrue( ! empty( $results ));
$this->assertSame( 4, count( $results ) );
$this->assertEquals( $results[0]->entry_id, $entry['id']);
$this->assertEquals( $results[1]->entry_id, $entry['id']);
$this->assertEquals( $results[2]->entry_id, $entry['id']);
$this->assertEquals( $results[3]->entry_id, $entry['id']);
}
/**
* Test query by field where field value equals a value
*
* @covers \calderawp\CalderaFormsQuery\Select\EntryValues::queryByFieldValue()
*/
public function testQueryByFieldValueEquals()
{
//Entry with no real email
$this->createEntryWithMockForm();
//Create entries for each of two emails
$emailOne = 'one@hiroy.club';
$emailTwo = 'two@hiroy.club';
$this->createEntryWithEmail( $emailOne );
$this->createEntryWithEmail( $emailTwo );
//One entry when querying by first email
$entryValuesQueryGenerator = $this->entryValuesGeneratorFactory();
$this->assertSame( 1, count(
$this->queryWithWPDB(
$entryValuesQueryGenerator
->queryByFieldValue(
$this->getEmailFieldSlug(),
$emailOne
)
->getPreparedSql()
)
) );
//One entry when querying by second email
$entryValuesQueryGenerator = $this->entryValuesGeneratorFactory();
$this->assertSame( 1, count(
$this->queryWithWPDB(
$entryValuesQueryGenerator
->queryByFieldValue(
$this->getEmailFieldSlug(),
$emailTwo
)
->getPreparedSql()
)
) );
}
/**
* Test query by field where field does not equals a value
*
* @covers \calderawp\CalderaFormsQuery\Select\EntryValues::queryByFieldValue()
*/
public function testQueryByFieldValueNotEquals()
{
//Entry with no real email
$this->createEntryWithMockForm();
//Create entries for each of two emails
$emailOne = 'one@hiroy.club';
$emailTwo = 'two@hiroy.club';
$this->createEntryWithEmail( $emailOne );
$this->createEntryWithEmail( $emailTwo );
//Two entries when querying by NOT first email
$entryValuesQueryGenerator = $this->entryValuesGeneratorFactory();
$this->assertSame( 2, count(
$this->queryWithWPDB(
$entryValuesQueryGenerator
->queryByFieldValue(
$this->getEmailFieldSlug(),
$emailOne,
'notEquals'
)
->getPreparedSql()
)
) );
//Two entries when querying by NOT second email
$entryValuesQueryGenerator = $this->entryValuesGeneratorFactory();
$this->assertSame( 2, count(
$this->queryWithWPDB(
$entryValuesQueryGenerator
->queryByFieldValue(
$this->getEmailFieldSlug(),
$emailTwo,
'notEquals'
)
->getPreparedSql()
)
) );
}
}