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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<?php
namespace MongoDB\Tests\Operation;
use MongoDB\Operation\Find;
class FindTest extends TestCase
{
/**
* @expectedException MongoDB\Exception\InvalidArgumentException
* @dataProvider provideInvalidDocumentValues
*/
public function testConstructorFilterArgumentTypeCheck($filter)
{
new Find($this->getDatabaseName(), $this->getCollectionName(), $filter);
}
/**
* @expectedException MongoDB\Exception\InvalidArgumentException
* @dataProvider provideInvalidConstructorOptions
*/
public function testConstructorOptionTypeChecks(array $options)
{
new Find($this->getDatabaseName(), $this->getCollectionName(), [], $options);
}
public function provideInvalidConstructorOptions()
{
$options = [];
foreach ($this->getInvalidBooleanValues() as $value) {
$options[][] = ['allowPartialResults' => $value];
}
foreach ($this->getInvalidIntegerValues() as $value) {
$options[][] = ['batchSize' => $value];
}
foreach ($this->getInvalidDocumentValues() as $value) {
$options[][] = ['collation' => $value];
}
foreach ($this->getInvalidStringValues() as $value) {
$options[][] = ['comment' => $value];
}
foreach ($this->getInvalidIntegerValues() as $value) {
$options[][] = ['cursorType' => $value];
}
foreach ($this->getInvalidHintValues() as $value) {
$options[][] = ['hint' => $value];
}
foreach ($this->getInvalidIntegerValues() as $value) {
$options[][] = ['limit' => $value];
}
foreach ($this->getInvalidDocumentValues() as $value) {
$options[][] = ['max' => $value];
}
foreach ($this->getInvalidIntegerValues() as $value) {
$options[][] = ['maxAwaitTimeMS' => $value];
}
foreach ($this->getInvalidIntegerValues() as $value) {
$options[][] = ['maxScan' => $value];
}
foreach ($this->getInvalidIntegerValues() as $value) {
$options[][] = ['maxTimeMS' => $value];
}
foreach ($this->getInvalidDocumentValues() as $value) {
$options[][] = ['min' => $value];
}
foreach ($this->getInvalidDocumentValues() as $value) {
$options[][] = ['modifiers' => $value];
}
foreach ($this->getInvalidBooleanValues() as $value) {
$options[][] = ['oplogReplay' => $value];
}
foreach ($this->getInvalidDocumentValues() as $value) {
$options[][] = ['projection' => $value];
}
foreach ($this->getInvalidReadConcernValues() as $value) {
$options[][] = ['readConcern' => $value];
}
foreach ($this->getInvalidReadPreferenceValues() as $value) {
$options[][] = ['readPreference' => $value];
}
foreach ($this->getInvalidBooleanValues() as $value) {
$options[][] = ['returnKey' => $value];
}
foreach ($this->getInvalidSessionValues() as $value) {
$options[][] = ['session' => $value];
}
foreach ($this->getInvalidBooleanValues() as $value) {
$options[][] = ['showRecordId' => $value];
}
foreach ($this->getInvalidIntegerValues() as $value) {
$options[][] = ['skip' => $value];
}
foreach ($this->getInvalidBooleanValues() as $value) {
$options[][] = ['snapshot' => $value];
}
foreach ($this->getInvalidDocumentValues() as $value) {
$options[][] = ['sort' => $value];
}
foreach ($this->getInvalidArrayValues() as $value) {
$options[][] = ['typeMap' => $value];
}
return $options;
}
private function getInvalidHintValues()
{
return [123, 3.14, true];
}
/**
* @expectedException MongoDB\Exception\InvalidArgumentException
* @dataProvider provideInvalidConstructorCursorTypeOptions
*/
public function testConstructorCursorTypeOption($cursorType)
{
new Find($this->getDatabaseName(), $this->getCollectionName(), [], ['cursorType' => $cursorType]);
}
public function provideInvalidConstructorCursorTypeOptions()
{
return $this->wrapValuesForDataProvider([-1, 0, 4]);
}
}