We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Total Complexity | 74 |
| Total Lines | 982 |
| Duplicated Lines | 0 % |
| Changes | 4 | ||
| Bugs | 0 | Features | 0 |
Complex classes like CrudPanelFieldsTest often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use CrudPanelFieldsTest, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 21 | class CrudPanelFieldsTest extends BaseCrudPanel |
||
| 22 | { |
||
| 23 | private $oneTextFieldArray = [ |
||
| 24 | 'name' => 'field1', |
||
| 25 | 'label' => 'Field1', |
||
| 26 | 'type' => 'text', |
||
| 27 | ]; |
||
| 28 | |||
| 29 | private $expectedOneTextFieldArray = [ |
||
| 30 | 'field1' => [ |
||
| 31 | 'name' => 'field1', |
||
| 32 | 'label' => 'Field1', |
||
| 33 | 'type' => 'text', |
||
| 34 | 'entity' => false, |
||
| 35 | ], |
||
| 36 | ]; |
||
| 37 | |||
| 38 | private $unknownFieldTypeArray = [ |
||
| 39 | 'name' => 'field1', |
||
| 40 | 'type' => 'unknownType', |
||
| 41 | ]; |
||
| 42 | |||
| 43 | private $invalidTwoFieldsArray = [ |
||
| 44 | [ |
||
| 45 | 'keyOne' => 'field1', |
||
| 46 | 'keyTwo' => 'Field1', |
||
| 47 | ], |
||
| 48 | [ |
||
| 49 | 'otherKey' => 'field2', |
||
| 50 | ], |
||
| 51 | ]; |
||
| 52 | |||
| 53 | private $twoTextFieldsArray = [ |
||
| 54 | [ |
||
| 55 | 'name' => 'field1', |
||
| 56 | 'label' => 'Field1', |
||
| 57 | 'type' => 'text', |
||
| 58 | ], |
||
| 59 | [ |
||
| 60 | 'name' => 'field2', |
||
| 61 | 'label' => 'Field2', |
||
| 62 | ], |
||
| 63 | ]; |
||
| 64 | |||
| 65 | private $expectedTwoTextFieldsArray = [ |
||
|
|
|||
| 66 | 'field1' => [ |
||
| 67 | 'name' => 'field1', |
||
| 68 | 'label' => 'Field1', |
||
| 69 | 'type' => 'text', |
||
| 70 | 'entity' => false, |
||
| 71 | ], |
||
| 72 | 'field2' => [ |
||
| 73 | 'name' => 'field2', |
||
| 74 | 'label' => 'Field2', |
||
| 75 | 'type' => 'text', |
||
| 76 | 'entity' => false, |
||
| 77 | ], |
||
| 78 | ]; |
||
| 79 | |||
| 80 | private $threeTextFieldsArray = [ |
||
| 81 | [ |
||
| 82 | 'name' => 'field1', |
||
| 83 | 'label' => 'Field1', |
||
| 84 | 'type' => 'text', |
||
| 85 | ], |
||
| 86 | [ |
||
| 87 | 'name' => 'field2', |
||
| 88 | 'label' => 'Field2', |
||
| 89 | ], |
||
| 90 | [ |
||
| 91 | 'name' => 'field3', |
||
| 92 | ], |
||
| 93 | ]; |
||
| 94 | |||
| 95 | private $expectedThreeTextFieldsArray = [ |
||
| 96 | 'field1' => [ |
||
| 97 | 'name' => 'field1', |
||
| 98 | 'label' => 'Field1', |
||
| 99 | 'type' => 'text', |
||
| 100 | 'entity' => false, |
||
| 101 | ], |
||
| 102 | 'field2' => [ |
||
| 103 | 'name' => 'field2', |
||
| 104 | 'label' => 'Field2', |
||
| 105 | 'type' => 'text', |
||
| 106 | 'entity' => false, |
||
| 107 | ], |
||
| 108 | 'field3' => [ |
||
| 109 | 'name' => 'field3', |
||
| 110 | 'label' => 'Field3', |
||
| 111 | 'type' => 'text', |
||
| 112 | 'entity' => false, |
||
| 113 | ], |
||
| 114 | ]; |
||
| 115 | |||
| 116 | private $multipleFieldTypesArray = [ |
||
| 117 | [ |
||
| 118 | 'name' => 'field1', |
||
| 119 | 'label' => 'Field1', |
||
| 120 | ], |
||
| 121 | [ |
||
| 122 | 'name' => 'field2', |
||
| 123 | 'type' => 'address', |
||
| 124 | ], |
||
| 125 | [ |
||
| 126 | 'name' => 'field3', |
||
| 127 | 'type' => 'address', |
||
| 128 | ], |
||
| 129 | [ |
||
| 130 | 'name' => 'field4', |
||
| 131 | 'type' => 'checkbox', |
||
| 132 | ], |
||
| 133 | [ |
||
| 134 | 'name' => 'field5', |
||
| 135 | 'type' => 'date', |
||
| 136 | ], |
||
| 137 | [ |
||
| 138 | 'name' => 'field6', |
||
| 139 | 'type' => 'email', |
||
| 140 | ], |
||
| 141 | [ |
||
| 142 | 'name' => 'field7', |
||
| 143 | 'type' => 'hidden', |
||
| 144 | ], |
||
| 145 | [ |
||
| 146 | 'name' => 'field8', |
||
| 147 | 'type' => 'password', |
||
| 148 | ], |
||
| 149 | [ |
||
| 150 | 'name' => 'field9', |
||
| 151 | 'type' => 'select2', |
||
| 152 | ], |
||
| 153 | [ |
||
| 154 | 'name' => 'field10', |
||
| 155 | 'type' => 'select2_multiple', |
||
| 156 | ], |
||
| 157 | [ |
||
| 158 | 'name' => 'field11', |
||
| 159 | 'type' => 'table', |
||
| 160 | ], |
||
| 161 | [ |
||
| 162 | 'name' => 'field12', |
||
| 163 | 'type' => 'url', |
||
| 164 | ], |
||
| 165 | ]; |
||
| 166 | |||
| 167 | private $expectedMultipleFieldTypesArray = [ |
||
| 168 | 'field1' => [ |
||
| 169 | 'name' => 'field1', |
||
| 170 | 'label' => 'Field1', |
||
| 171 | 'type' => 'text', |
||
| 172 | 'entity' => false, |
||
| 173 | ], |
||
| 174 | 'field2' => [ |
||
| 175 | 'name' => 'field2', |
||
| 176 | 'type' => 'address', |
||
| 177 | 'label' => 'Field2', |
||
| 178 | 'entity' => false, |
||
| 179 | ], |
||
| 180 | 'field3' => [ |
||
| 181 | 'name' => 'field3', |
||
| 182 | 'type' => 'address', |
||
| 183 | 'label' => 'Field3', |
||
| 184 | 'entity' => false, |
||
| 185 | ], |
||
| 186 | 'field4' => [ |
||
| 187 | 'name' => 'field4', |
||
| 188 | 'type' => 'checkbox', |
||
| 189 | 'label' => 'Field4', |
||
| 190 | 'entity' => false, |
||
| 191 | ], |
||
| 192 | 'field5' => [ |
||
| 193 | 'name' => 'field5', |
||
| 194 | 'type' => 'date', |
||
| 195 | 'label' => 'Field5', |
||
| 196 | 'entity' => false, |
||
| 197 | ], |
||
| 198 | 'field6' => [ |
||
| 199 | 'name' => 'field6', |
||
| 200 | 'type' => 'email', |
||
| 201 | 'label' => 'Field6', |
||
| 202 | 'entity' => false, |
||
| 203 | ], |
||
| 204 | 'field7' => [ |
||
| 205 | 'name' => 'field7', |
||
| 206 | 'type' => 'hidden', |
||
| 207 | 'label' => 'Field7', |
||
| 208 | 'entity' => false, |
||
| 209 | ], |
||
| 210 | 'field8' => [ |
||
| 211 | 'name' => 'field8', |
||
| 212 | 'type' => 'password', |
||
| 213 | 'label' => 'Field8', |
||
| 214 | 'entity' => false, |
||
| 215 | ], |
||
| 216 | 'field9' => [ |
||
| 217 | 'name' => 'field9', |
||
| 218 | 'type' => 'select2', |
||
| 219 | 'label' => 'Field9', |
||
| 220 | 'entity' => false, |
||
| 221 | ], |
||
| 222 | 'field10' => [ |
||
| 223 | 'name' => 'field10', |
||
| 224 | 'type' => 'select2_multiple', |
||
| 225 | 'label' => 'Field10', |
||
| 226 | 'entity' => false, |
||
| 227 | ], |
||
| 228 | 'field11' => [ |
||
| 229 | 'name' => 'field11', |
||
| 230 | 'type' => 'table', |
||
| 231 | 'label' => 'Field11', |
||
| 232 | 'entity' => false, |
||
| 233 | ], |
||
| 234 | 'field12' => [ |
||
| 235 | 'name' => 'field12', |
||
| 236 | 'type' => 'url', |
||
| 237 | 'label' => 'Field12', |
||
| 238 | 'entity' => false, |
||
| 239 | ], |
||
| 240 | ]; |
||
| 241 | |||
| 242 | /** |
||
| 243 | * Setup the test environment. |
||
| 244 | * |
||
| 245 | * @return void |
||
| 246 | */ |
||
| 247 | protected function setUp(): void |
||
| 248 | { |
||
| 249 | parent::setUp(); |
||
| 250 | |||
| 251 | $this->crudPanel->setOperation('create'); |
||
| 252 | } |
||
| 253 | |||
| 254 | public function testAddFieldByName() |
||
| 255 | { |
||
| 256 | $this->crudPanel->addField('field1'); |
||
| 257 | |||
| 258 | $this->assertEquals(1, count($this->crudPanel->fields())); |
||
| 259 | $this->assertEquals($this->expectedOneTextFieldArray, $this->crudPanel->fields()); |
||
| 260 | } |
||
| 261 | |||
| 262 | public function testAddFieldsByName() |
||
| 263 | { |
||
| 264 | $this->crudPanel->addFields(['field1', 'field2', 'field3']); |
||
| 265 | |||
| 266 | $this->assertEquals(3, count($this->crudPanel->fields())); |
||
| 267 | $this->assertEquals($this->expectedThreeTextFieldsArray, $this->crudPanel->fields()); |
||
| 268 | } |
||
| 269 | |||
| 270 | public function testAddFieldsAsArray() |
||
| 271 | { |
||
| 272 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 273 | |||
| 274 | $this->assertEquals(3, count($this->crudPanel->fields())); |
||
| 275 | $this->assertEquals($this->expectedThreeTextFieldsArray, $this->crudPanel->fields()); |
||
| 276 | } |
||
| 277 | |||
| 278 | public function testAddFieldsDifferentTypes() |
||
| 279 | { |
||
| 280 | $this->crudPanel->addFields($this->multipleFieldTypesArray); |
||
| 281 | |||
| 282 | $this->assertEquals(12, count($this->crudPanel->fields())); |
||
| 283 | $this->assertEquals($this->expectedMultipleFieldTypesArray, $this->crudPanel->fields()); |
||
| 284 | } |
||
| 285 | |||
| 286 | public function testAddFieldsInvalidArray() |
||
| 287 | { |
||
| 288 | $this->expectException(\Exception::class); |
||
| 289 | |||
| 290 | $this->crudPanel->addFields($this->invalidTwoFieldsArray); |
||
| 291 | } |
||
| 292 | |||
| 293 | public function testAddFieldWithInvalidType() |
||
| 294 | { |
||
| 295 | $this->markTestIncomplete('Not correctly implemented'); |
||
| 296 | |||
| 297 | // TODO: should we validate field types and throw an error if they're not in the pre-defined list of fields or |
||
| 298 | // in the list of custom field? |
||
| 299 | $this->crudPanel->addFields($this->unknownFieldTypeArray); |
||
| 300 | } |
||
| 301 | |||
| 302 | public function testAddFieldsForCreateForm() |
||
| 303 | { |
||
| 304 | $this->crudPanel->addFields($this->threeTextFieldsArray, 'create'); |
||
| 305 | |||
| 306 | $this->assertEquals(3, count($this->crudPanel->fields())); |
||
| 307 | $this->assertEquals($this->expectedThreeTextFieldsArray, $this->crudPanel->getCreateFields()); |
||
| 308 | } |
||
| 309 | |||
| 310 | public function testAddFieldsForUpdateForm() |
||
| 311 | { |
||
| 312 | $this->crudPanel->addFields($this->threeTextFieldsArray, 'update'); |
||
| 313 | |||
| 314 | $this->assertEquals(3, count($this->crudPanel->fields())); |
||
| 315 | $this->assertEquals($this->expectedThreeTextFieldsArray, $this->crudPanel->fields()); |
||
| 316 | } |
||
| 317 | |||
| 318 | public function testBeforeField() |
||
| 319 | { |
||
| 320 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 321 | $this->crudPanel->beforeField('field2'); |
||
| 322 | |||
| 323 | $createKeys = array_keys($this->crudPanel->fields()); |
||
| 324 | $this->assertEquals($this->expectedThreeTextFieldsArray['field3'], $this->crudPanel->fields()[$createKeys[1]]); |
||
| 325 | $this->assertEquals(['field1', 'field3', 'field2'], $createKeys); |
||
| 326 | } |
||
| 327 | |||
| 328 | public function testBeforeFieldFirstField() |
||
| 329 | { |
||
| 330 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 331 | $this->crudPanel->beforeField('field1'); |
||
| 332 | |||
| 333 | $createKeys = array_keys($this->crudPanel->fields()); |
||
| 334 | $this->assertEquals($this->expectedThreeTextFieldsArray['field3'], $this->crudPanel->fields()[$createKeys[0]]); |
||
| 335 | $this->assertEquals(['field3', 'field1', 'field2'], $createKeys); |
||
| 336 | |||
| 337 | $updateKeys = array_keys($this->crudPanel->fields()); |
||
| 338 | $this->assertEquals($this->expectedThreeTextFieldsArray['field3'], $this->crudPanel->fields()[$updateKeys[0]]); |
||
| 339 | $this->assertEquals(['field3', 'field1', 'field2'], $updateKeys); |
||
| 340 | } |
||
| 341 | |||
| 342 | public function testBeforeFieldLastField() |
||
| 343 | { |
||
| 344 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 345 | $this->crudPanel->beforeField('field3'); |
||
| 346 | |||
| 347 | $createKeys = array_keys($this->crudPanel->fields()); |
||
| 348 | $this->assertEquals($this->expectedThreeTextFieldsArray['field3'], $this->crudPanel->fields()[$createKeys[2]]); |
||
| 349 | $this->assertEquals(['field1', 'field2', 'field3'], $createKeys); |
||
| 350 | } |
||
| 351 | |||
| 352 | public function testBeforeFieldCreateForm() |
||
| 353 | { |
||
| 354 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 355 | $this->crudPanel->beforeField('field1'); |
||
| 356 | |||
| 357 | $createKeys = array_keys($this->crudPanel->fields()); |
||
| 358 | $this->assertEquals($this->expectedThreeTextFieldsArray['field3'], $this->crudPanel->fields()[$createKeys[0]]); |
||
| 359 | $this->assertEquals(['field3', 'field1', 'field2'], $createKeys); |
||
| 360 | } |
||
| 361 | |||
| 362 | public function testBeforeUnknownField() |
||
| 363 | { |
||
| 364 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 365 | |||
| 366 | $this->crudPanel->beforeField('field4'); |
||
| 367 | |||
| 368 | $this->assertEquals(3, count($this->crudPanel->fields())); |
||
| 369 | $this->assertEquals(array_keys($this->expectedThreeTextFieldsArray), array_keys($this->crudPanel->fields())); |
||
| 370 | } |
||
| 371 | |||
| 372 | public function testAfterField() |
||
| 373 | { |
||
| 374 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 375 | |||
| 376 | $this->crudPanel->afterField('field1'); |
||
| 377 | |||
| 378 | $createKeys = array_keys($this->crudPanel->fields()); |
||
| 379 | $this->assertEquals($this->expectedThreeTextFieldsArray['field3'], $this->crudPanel->fields()[$createKeys[1]]); |
||
| 380 | $this->assertEquals(['field1', 'field3', 'field2'], $createKeys); |
||
| 381 | |||
| 382 | $updateKeys = array_keys($this->crudPanel->fields()); |
||
| 383 | $this->assertEquals($this->expectedThreeTextFieldsArray['field3'], $this->crudPanel->fields()[$updateKeys[1]]); |
||
| 384 | $this->assertEquals(['field1', 'field3', 'field2'], $updateKeys); |
||
| 385 | } |
||
| 386 | |||
| 387 | public function testAfterFieldLastField() |
||
| 388 | { |
||
| 389 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 390 | |||
| 391 | $this->crudPanel->afterField('field3'); |
||
| 392 | |||
| 393 | $createKeys = array_keys($this->crudPanel->fields()); |
||
| 394 | $this->assertEquals($this->expectedThreeTextFieldsArray['field3'], $this->crudPanel->fields()[$createKeys[2]]); |
||
| 395 | $this->assertEquals(['field1', 'field2', 'field3'], $createKeys); |
||
| 396 | |||
| 397 | $updateKeys = array_keys($this->crudPanel->fields()); |
||
| 398 | $this->assertEquals($this->expectedThreeTextFieldsArray['field3'], $this->crudPanel->fields()[$updateKeys[2]]); |
||
| 399 | $this->assertEquals(['field1', 'field2', 'field3'], $updateKeys); |
||
| 400 | } |
||
| 401 | |||
| 402 | public function testAfterFieldOnCertainField() |
||
| 403 | { |
||
| 404 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 405 | $this->crudPanel->addField('custom')->afterField('field1'); |
||
| 406 | |||
| 407 | $createKeys = array_keys($this->crudPanel->fields()); |
||
| 408 | $this->assertEquals(['field1', 'custom', 'field2', 'field3'], $createKeys); |
||
| 409 | } |
||
| 410 | |||
| 411 | public function testAfterUnknownField() |
||
| 412 | { |
||
| 413 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 414 | |||
| 415 | $this->crudPanel->afterField('field4'); |
||
| 416 | |||
| 417 | $this->assertEquals(3, count($this->crudPanel->fields())); |
||
| 418 | $this->assertEquals(array_keys($this->expectedThreeTextFieldsArray), array_keys($this->crudPanel->fields())); |
||
| 419 | } |
||
| 420 | |||
| 421 | public function testRemoveFieldsByName() |
||
| 422 | { |
||
| 423 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 424 | |||
| 425 | $this->crudPanel->removeFields(['field1']); |
||
| 426 | |||
| 427 | $this->assertEquals(2, count($this->crudPanel->fields())); |
||
| 428 | $this->assertEquals(['field2', 'field3'], array_keys($this->crudPanel->fields())); |
||
| 429 | } |
||
| 430 | |||
| 431 | public function testRemoveFieldsByNameInvalidArray() |
||
| 432 | { |
||
| 433 | $this->markTestIncomplete('Not correctly implemented'); |
||
| 434 | |||
| 435 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 436 | |||
| 437 | // TODO: this should not work because the method specifically asks for an array of field keys, but it does |
||
| 438 | // because the removeField method will actually work with arrays instead of a string |
||
| 439 | $this->crudPanel->removeFields($this->twoTextFieldsArray); |
||
| 440 | |||
| 441 | $this->assertEquals(3, count($this->crudPanel->fields())); |
||
| 442 | $this->assertEquals(array_keys($this->expectedThreeTextFieldsArray), array_keys($this->crudPanel->fields())); |
||
| 443 | } |
||
| 444 | |||
| 445 | public function testRemoveFieldsFromCreateForm() |
||
| 446 | { |
||
| 447 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 448 | $this->crudPanel->removeFields(['field1']); |
||
| 449 | |||
| 450 | $this->assertEquals(2, count($this->crudPanel->fields())); |
||
| 451 | $this->assertEquals(['field2', 'field3'], array_keys($this->crudPanel->fields())); |
||
| 452 | } |
||
| 453 | |||
| 454 | public function testRemoveFieldsFromUpdateForm() |
||
| 455 | { |
||
| 456 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 457 | $this->crudPanel->removeFields(['field1']); |
||
| 458 | |||
| 459 | $this->assertEquals(2, count($this->crudPanel->fields())); |
||
| 460 | $this->assertEquals(['field2', 'field3'], array_keys($this->crudPanel->fields())); |
||
| 461 | } |
||
| 462 | |||
| 463 | public function testRemoveUnknownFields() |
||
| 464 | { |
||
| 465 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 466 | |||
| 467 | $this->crudPanel->removeFields(['field4']); |
||
| 468 | |||
| 469 | $this->assertEquals(3, count($this->crudPanel->fields())); |
||
| 470 | $this->assertEquals(3, count($this->crudPanel->fields())); |
||
| 471 | $this->assertEquals(array_keys($this->expectedThreeTextFieldsArray), array_keys($this->crudPanel->fields())); |
||
| 472 | $this->assertEquals(array_keys($this->expectedThreeTextFieldsArray), array_keys($this->crudPanel->fields())); |
||
| 473 | } |
||
| 474 | |||
| 475 | public function testOrderFields() |
||
| 476 | { |
||
| 477 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 478 | |||
| 479 | $this->crudPanel->orderFields(['field2', 'field1', 'field3']); |
||
| 480 | |||
| 481 | $this->assertEquals(['field2', 'field1', 'field3'], array_keys($this->crudPanel->fields())); |
||
| 482 | } |
||
| 483 | |||
| 484 | public function testOrderFieldsCreateForm() |
||
| 485 | { |
||
| 486 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 487 | |||
| 488 | $this->crudPanel->orderFields(['field2', 'field1', 'field3'], 'create'); |
||
| 489 | |||
| 490 | $this->assertEquals(['field2', 'field1', 'field3'], array_keys($this->crudPanel->fields())); |
||
| 491 | $this->assertEquals($this->expectedThreeTextFieldsArray, $this->crudPanel->fields()); |
||
| 492 | } |
||
| 493 | |||
| 494 | public function testOrderFieldsUpdateForm() |
||
| 495 | { |
||
| 496 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 497 | |||
| 498 | $this->crudPanel->orderFields(['field2', 'field1', 'field3'], 'update'); |
||
| 499 | |||
| 500 | $this->assertEquals($this->expectedThreeTextFieldsArray, $this->crudPanel->fields()); |
||
| 501 | $this->assertEquals(['field2', 'field1', 'field3'], array_keys($this->crudPanel->fields())); |
||
| 502 | } |
||
| 503 | |||
| 504 | public function testOrderFieldsIncompleteList() |
||
| 505 | { |
||
| 506 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 507 | |||
| 508 | $this->crudPanel->orderFields(['field2', 'field3']); |
||
| 509 | |||
| 510 | $this->assertEquals(['field2', 'field3', 'field1'], array_keys($this->crudPanel->fields())); |
||
| 511 | } |
||
| 512 | |||
| 513 | public function testOrderFieldsEmptyList() |
||
| 514 | { |
||
| 515 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 516 | |||
| 517 | $this->crudPanel->orderFields([]); |
||
| 518 | |||
| 519 | $this->assertEquals($this->expectedThreeTextFieldsArray, $this->crudPanel->fields()); |
||
| 520 | } |
||
| 521 | |||
| 522 | public function testOrderFieldsUnknownList() |
||
| 523 | { |
||
| 524 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 525 | |||
| 526 | $this->crudPanel->orderFields(['field4', 'field5', 'field6']); |
||
| 527 | |||
| 528 | $this->assertEquals($this->expectedThreeTextFieldsArray, $this->crudPanel->fields()); |
||
| 529 | } |
||
| 530 | |||
| 531 | public function testOrderColumnsMixedList() |
||
| 532 | { |
||
| 533 | $this->crudPanel->addFields($this->threeTextFieldsArray); |
||
| 534 | |||
| 535 | $this->crudPanel->orderFields(['field2', 'field5', 'field6']); |
||
| 536 | |||
| 537 | $this->assertEquals(['field2', 'field1', 'field3'], array_keys($this->crudPanel->fields())); |
||
| 538 | } |
||
| 539 | |||
| 540 | public function testCheckIfFieldIsFirstOfItsType() |
||
| 541 | { |
||
| 542 | $this->crudPanel->addFields($this->multipleFieldTypesArray); |
||
| 543 | |||
| 544 | $isFirstAddressFieldFirst = $this->crudPanel->checkIfFieldIsFirstOfItsType($this->multipleFieldTypesArray[1]); |
||
| 545 | $isSecondAddressFieldFirst = $this->crudPanel->checkIfFieldIsFirstOfItsType($this->multipleFieldTypesArray[2]); |
||
| 546 | |||
| 547 | $this->assertTrue($isFirstAddressFieldFirst); |
||
| 548 | $this->assertFalse($isSecondAddressFieldFirst); |
||
| 549 | } |
||
| 550 | |||
| 551 | public function testCheckIfUnknownFieldIsFirstOfItsType() |
||
| 552 | { |
||
| 553 | $isUnknownFieldFirst = $this->crudPanel->checkIfFieldIsFirstOfItsType($this->unknownFieldTypeArray, $this->expectedMultipleFieldTypesArray); |
||
| 554 | |||
| 555 | $this->assertFalse($isUnknownFieldFirst); |
||
| 556 | } |
||
| 557 | |||
| 558 | public function testCheckIfInvalidFieldIsFirstOfItsType() |
||
| 559 | { |
||
| 560 | $this->expectException(\ErrorException::class); |
||
| 561 | |||
| 562 | $this->crudPanel->checkIfFieldIsFirstOfItsType($this->invalidTwoFieldsArray[0], $this->expectedMultipleFieldTypesArray); |
||
| 563 | } |
||
| 564 | |||
| 565 | public function testDecodeJsonCastedAttributes() |
||
| 566 | { |
||
| 567 | $this->markTestIncomplete(); |
||
| 568 | |||
| 569 | // TODO: the decode JSON method should not be in fields trait and should not be exposed in the public API. |
||
| 570 | } |
||
| 571 | |||
| 572 | public function testFieldNameDotNotationIsRelationship() |
||
| 573 | { |
||
| 574 | $this->crudPanel->setModel(User::class); |
||
| 575 | $this->crudPanel->addField('accountDetails.nickname'); |
||
| 576 | $fieldReadyForHtml = $this->crudPanel->fields()['accountDetails.nickname']; |
||
| 577 | $fieldCleanState = $this->crudPanel->getCleanStateFields()['accountDetails.nickname']; |
||
| 578 | $this->assertEquals(Arr::except($fieldReadyForHtml, ['name']), Arr::except($fieldCleanState, ['name'])); |
||
| 579 | $this->assertEquals($fieldCleanState['relation_type'], 'HasOne'); |
||
| 580 | $this->assertEquals($fieldReadyForHtml['name'], 'accountDetails[nickname]'); |
||
| 581 | $this->assertEquals($fieldCleanState['name'], 'accountDetails.nickname'); |
||
| 582 | } |
||
| 583 | |||
| 584 | public function testFieldNameDotNotationIsRelationshipUsingFluentSynthax() |
||
| 585 | { |
||
| 586 | $this->crudPanel->setModel(User::class); |
||
| 587 | $this->crudPanel->field('accountDetails.nickname')->label('custom label'); |
||
| 588 | $fieldReadyForHtml = $this->crudPanel->fields()['accountDetails.nickname']; |
||
| 589 | $fieldCleanState = $this->crudPanel->getCleanStateFields()['accountDetails.nickname']; |
||
| 590 | $this->assertEquals(Arr::except($fieldReadyForHtml, ['name']), Arr::except($fieldCleanState, ['name'])); |
||
| 591 | $this->assertEquals($fieldCleanState['relation_type'], 'HasOne'); |
||
| 592 | $this->assertEquals($fieldReadyForHtml['name'], 'accountDetails[nickname]'); |
||
| 593 | $this->assertEquals($fieldCleanState['name'], 'accountDetails.nickname'); |
||
| 594 | } |
||
| 595 | |||
| 596 | public function testFieldNameIsRelationInCrudModel() |
||
| 597 | { |
||
| 598 | $this->crudPanel->setModel(User::class); |
||
| 599 | $this->crudPanel->addField('roles'); |
||
| 600 | $field = $this->crudPanel->fields()['roles']; |
||
| 601 | $this->assertEquals($field['relation_type'], 'BelongsToMany'); |
||
| 602 | } |
||
| 603 | |||
| 604 | public function testFieldNameIsPartialRelationInCrudModel() |
||
| 605 | { |
||
| 606 | $this->crudPanel->setModel(User::class); |
||
| 607 | $this->crudPanel->addField('articles_id'); |
||
| 608 | $field = $this->crudPanel->fields()['articles_id']; |
||
| 609 | $this->assertEquals($field['relation_type'], 'HasMany'); |
||
| 610 | } |
||
| 611 | |||
| 612 | public function testGetStrippedSaveRequestWithClosure() |
||
| 613 | { |
||
| 614 | $this->crudPanel->setOperationSetting( |
||
| 615 | 'strippedRequest', |
||
| 616 | static function (Request $request) { |
||
| 617 | return $request->toArray(); |
||
| 618 | }, |
||
| 619 | 'update' |
||
| 620 | ); |
||
| 621 | $this->crudPanel->setOperation('update'); |
||
| 622 | $this->crudPanel->setModel(User::class); |
||
| 623 | $request = request()->create('/users/1/edit', 'POST', ['name' => 'john']); |
||
| 624 | $result = $this->crudPanel->getStrippedSaveRequest($request); |
||
| 625 | $this->assertIsArray($result); |
||
| 626 | $this->assertSame(['name' => 'john'], $result); |
||
| 627 | } |
||
| 628 | |||
| 629 | public function testGetStrippedSaveRequestWithClass() |
||
| 630 | { |
||
| 631 | $this->crudPanel->setOperationSetting( |
||
| 632 | 'strippedRequest', |
||
| 633 | Invokable::class, |
||
| 634 | 'update' |
||
| 635 | ); |
||
| 636 | $this->crudPanel->setOperation('update'); |
||
| 637 | $this->crudPanel->setModel(User::class); |
||
| 638 | $request = request()->create('/users/1/edit', 'POST', ['name' => 'john']); |
||
| 639 | $result = $this->crudPanel->getStrippedSaveRequest($request); |
||
| 640 | $this->assertIsArray($result); |
||
| 641 | $this->assertSame(['invokable' => 'invokable'], $result); |
||
| 642 | } |
||
| 643 | |||
| 644 | public function testItDoesNotUseProtectedMethodsAsRelationshipMethods() |
||
| 645 | { |
||
| 646 | $this->crudPanel->setModel(User::class); |
||
| 647 | $this->crudPanel->addField('isNotRelation'); |
||
| 648 | $this->crudPanel->addField('isNotRelationPublic'); |
||
| 649 | |||
| 650 | $this->assertEquals(false, $this->crudPanel->fields()['isNotRelation']['entity']); |
||
| 651 | $this->assertEquals(false, $this->crudPanel->fields()['isNotRelationPublic']['entity']); |
||
| 652 | } |
||
| 653 | |||
| 654 | public function testItAbortsOnUnexpectedEntity() |
||
| 655 | { |
||
| 656 | try { |
||
| 657 | $this->crudPanel->getRelationInstance(['name' => 'doesNotExist', 'entity' => 'doesNotExist']); |
||
| 658 | } catch (\Throwable $e) { |
||
| 659 | } |
||
| 660 | $this->assertEquals( |
||
| 661 | new \Symfony\Component\HttpKernel\Exception\HttpException(500, 'Looks like field <code>doesNotExist</code> is not properly defined. The <code>doesNotExist()</code> relationship doesn\'t seem to exist on the <code>Backpack\CRUD\Tests\Config\Models\TestModel</code> model.', null, ['developer-error-exception']), |
||
| 662 | $e |
||
| 663 | ); |
||
| 664 | } |
||
| 665 | |||
| 666 | public function testItCanRemoveAllFields() |
||
| 667 | { |
||
| 668 | $this->crudPanel->addFields([ |
||
| 669 | ['name' => 'test1'], |
||
| 670 | ['name' => 'test2'], |
||
| 671 | ]); |
||
| 672 | |||
| 673 | $this->assertCount(2, $this->crudPanel->fieldS()); |
||
| 674 | $this->crudPanel->removeAllFields(); |
||
| 675 | $this->assertCount(0, $this->crudPanel->fieldS()); |
||
| 676 | } |
||
| 677 | |||
| 678 | public function testItCanRemoveAnAttributeFromAField() |
||
| 685 | } |
||
| 686 | |||
| 687 | public function testItCanSetALabelForAField() |
||
| 688 | { |
||
| 689 | $this->crudPanel->addField(['name' => 'test', 'tab' => 'test']); |
||
| 690 | $this->crudPanel->setFieldLabel('test', 'my-test-label'); |
||
| 691 | $this->assertEquals('my-test-label', $this->crudPanel->fieldS()['test']['label']); |
||
| 692 | } |
||
| 693 | |||
| 694 | public function testItCanMakeAFieldFirst() |
||
| 695 | { |
||
| 696 | $firstField = $this->crudPanel->addField(['name' => 'test1']); |
||
| 697 | $secondField = $this->crudPanel->addField(['name' => 'test2']); |
||
| 698 | $this->assertEquals(['test1', 'test2'], array_keys($this->crudPanel->fields())); |
||
| 699 | $secondField->makeFirstField(); |
||
| 700 | $this->assertEquals(['test2', 'test1'], array_keys($this->crudPanel->fields())); |
||
| 701 | } |
||
| 702 | |||
| 703 | public function testItCanGetTheCurrentFields() |
||
| 704 | { |
||
| 705 | $this->crudPanel->addField(['name' => 'test1']); |
||
| 706 | $this->crudPanel->addField(['name' => 'test2']); |
||
| 707 | |||
| 708 | $this->assertCount(2, $this->crudPanel->getCurrentFields()); |
||
| 709 | $this->assertCount(2, $this->crudPanel->getFields()); |
||
| 710 | } |
||
| 711 | |||
| 712 | public function testItCanGetUploadFields() |
||
| 713 | { |
||
| 714 | $this->crudPanel->addField(['name' => 'test1', 'upload' => true]); |
||
| 715 | $this->crudPanel->addField(['name' => 'test2']); |
||
| 716 | |||
| 717 | $this->assertCount(2, $this->crudPanel->getFields()); |
||
| 718 | $this->assertTrue($this->crudPanel->hasUploadFields()); |
||
| 719 | } |
||
| 720 | |||
| 721 | public function testItCanGetTheFieldTypeWithViewNamespace() |
||
| 722 | { |
||
| 723 | $this->crudPanel->addField(['name' => 'test', 'view_namespace' => 'test_namespace']); |
||
| 724 | $this->assertEquals('test_namespace.text', $this->crudPanel->getFieldTypeWithNamespace($this->crudPanel->fields()['test'])); |
||
| 725 | $this->assertEquals('test', $this->crudPanel->getFieldTypeWithNamespace('test')); |
||
| 726 | } |
||
| 727 | |||
| 728 | public function testItCanGetAllFieldNames() |
||
| 729 | { |
||
| 730 | $this->crudPanel->addField(['name' => 'test1']); |
||
| 731 | $this->crudPanel->addField(['name' => 'test2']); |
||
| 732 | $this->assertEquals(['test1', 'test2'], $this->crudPanel->getAllFieldNames()); |
||
| 733 | } |
||
| 734 | |||
| 735 | public function testItCanAddAFluentField() |
||
| 736 | { |
||
| 737 | $this->crudPanel->setModel(User::class); |
||
| 738 | |||
| 739 | $this->crudPanel->field('my_field') |
||
| 740 | ->type('my_custom_type') |
||
| 741 | ->label('my_label') |
||
| 742 | ->tab('custom_tab') |
||
| 743 | ->prefix('prefix') |
||
| 744 | ->suffix('suffix') |
||
| 745 | ->hint('hinter') |
||
| 746 | ->fake(false) |
||
| 747 | ->validationRules('required|min:2') |
||
| 748 | ->validationMessages(['required' => 'is_required', 'min' => 'min_2']) |
||
| 749 | ->store_in('some') |
||
| 750 | ->size(6) |
||
| 751 | ->on('created', function () { |
||
| 752 | }) |
||
| 753 | ->subfields([['name' => 'sub_1']]) |
||
| 754 | ->entity('bang'); |
||
| 755 | |||
| 756 | $this->assertCount(1, $this->crudPanel->fields()); |
||
| 757 | |||
| 758 | $this->assertEquals([ |
||
| 759 | 'name' => 'my_field', |
||
| 760 | 'type' => 'my_custom_type', |
||
| 761 | 'entity' => 'bang', |
||
| 762 | 'relation_type' => 'BelongsTo', |
||
| 763 | 'attribute' => 'name', |
||
| 764 | 'model' => 'Backpack\CRUD\Tests\Config\Models\Bang', |
||
| 765 | 'multiple' => false, |
||
| 766 | 'pivot' => false, |
||
| 767 | 'label' => 'my_label', |
||
| 768 | 'tab' => 'custom_tab', |
||
| 769 | 'suffix' => 'suffix', |
||
| 770 | 'prefix' => 'prefix', |
||
| 771 | 'hint' => 'hinter', |
||
| 772 | 'fake' => false, |
||
| 773 | 'validationRules' => 'required|min:2', |
||
| 774 | 'validationMessages' => [ |
||
| 775 | 'required' => 'is_required', |
||
| 776 | 'min' => 'min_2', |
||
| 777 | ], |
||
| 778 | 'store_in' => 'some', |
||
| 779 | 'wrapper' => [ |
||
| 780 | 'class' => 'form-group col-md-6 mb-3', |
||
| 781 | ], |
||
| 782 | 'events' => [ |
||
| 783 | 'created' => function () { |
||
| 784 | }, |
||
| 785 | ], |
||
| 786 | 'subfields' => [ |
||
| 787 | [ |
||
| 788 | 'name' => 'sub_1', |
||
| 789 | 'parentFieldName' => 'my_field', |
||
| 790 | 'type' => 'text', |
||
| 791 | 'entity' => false, |
||
| 792 | 'label' => 'Sub 1', |
||
| 793 | ], |
||
| 794 | ], |
||
| 795 | |||
| 796 | ], $this->crudPanel->fields()['my_field']); |
||
| 797 | } |
||
| 798 | |||
| 799 | public function testAddFieldFluentClassUsingArrayDefinition() |
||
| 800 | { |
||
| 801 | $this->crudPanel->field($this->oneTextFieldArray); |
||
| 802 | |||
| 803 | $this->assertEquals(1, count($this->crudPanel->fields())); |
||
| 804 | $this->assertEquals($this->expectedOneTextFieldArray, $this->crudPanel->fields()); |
||
| 805 | } |
||
| 806 | |||
| 807 | public function testItCanFluentlyAddUploadAttribute() |
||
| 808 | { |
||
| 809 | $this->crudPanel->field('avatar')->upload(); |
||
| 810 | $this->assertEquals(true, $this->crudPanel->fields()['avatar']['upload']); |
||
| 811 | } |
||
| 812 | |||
| 813 | public function testItCanMakeAFieldFirstFluently() |
||
| 814 | { |
||
| 815 | $this->crudPanel->field('test1'); |
||
| 816 | $this->crudPanel->field('test2')->makeFirst(); |
||
| 817 | $crudFields = $this->crudPanel->fields(); |
||
| 818 | $firstField = reset($crudFields); |
||
| 819 | $this->assertEquals($firstField['name'], 'test2'); |
||
| 820 | } |
||
| 821 | |||
| 822 | public function testItCanMakeAFieldLastFluently() |
||
| 823 | { |
||
| 824 | $this->crudPanel->field('test1'); |
||
| 825 | $this->crudPanel->field('test2'); |
||
| 826 | $this->crudPanel->field('test1')->makeLast(); |
||
| 827 | $crudFields = $this->crudPanel->fields(); |
||
| 828 | $firstField = reset($crudFields); |
||
| 829 | $this->assertEquals($firstField['name'], 'test2'); |
||
| 830 | } |
||
| 831 | |||
| 832 | public function testItCanPlaceFieldsFluently() |
||
| 833 | { |
||
| 834 | $this->crudPanel->field('test1'); |
||
| 835 | $this->crudPanel->field('test2'); |
||
| 836 | $this->crudPanel->field('test3')->after('test1'); |
||
| 837 | |||
| 838 | $crudFieldsNames = array_column($this->crudPanel->fields(), 'name'); |
||
| 839 | $this->assertEquals($crudFieldsNames, ['test1', 'test3', 'test2']); |
||
| 840 | |||
| 841 | $this->crudPanel->field('test4')->before('test1'); |
||
| 842 | $crudFieldsNames = array_column($this->crudPanel->fields(), 'name'); |
||
| 843 | $this->assertEquals($crudFieldsNames, ['test4', 'test1', 'test3', 'test2']); |
||
| 844 | } |
||
| 845 | |||
| 846 | public function testItCanRemoveFieldAttributesFluently() |
||
| 847 | { |
||
| 848 | $this->crudPanel->field('test1')->type('test'); |
||
| 849 | $this->assertEquals($this->crudPanel->fields()['test1']['type'], 'test'); |
||
| 850 | $this->crudPanel->field('test1')->forget('type'); |
||
| 851 | $this->assertNull($this->crudPanel->fields()['test1']['type'] ?? null); |
||
| 852 | } |
||
| 853 | |||
| 854 | public function testItCanRemoveFieldFluently() |
||
| 855 | { |
||
| 856 | $this->crudPanel->field('test1')->type('test'); |
||
| 857 | $this->assertCount(1, $this->crudPanel->fields()); |
||
| 858 | $this->crudPanel->field('test1')->remove(); |
||
| 859 | $this->assertCount(0, $this->crudPanel->fields()); |
||
| 860 | } |
||
| 861 | |||
| 862 | public function testItCanAddMorphFieldsFluently() |
||
| 863 | { |
||
| 864 | $this->crudPanel->setModel(Star::class); |
||
| 865 | $this->crudPanel->field('starable') |
||
| 866 | ->addMorphOption('Backpack\CRUD\Tests\config\Models\User', 'User') |
||
| 867 | ->morphTypeField(['attributes' => ['custom-attribute' => true]]) |
||
| 868 | ->morphIdField(['attributes' => ['custom-attribute' => true]]); |
||
| 869 | |||
| 870 | [$morphTypeField, $morphIdField] = $this->crudPanel->fields()['starable']['subfields']; |
||
| 871 | |||
| 872 | $this->assertTrue($morphTypeField['attributes']['custom-attribute']); |
||
| 873 | $this->assertTrue($morphIdField['attributes']['custom-attribute']); |
||
| 874 | } |
||
| 875 | |||
| 876 | public function testAbortsConfiguringNonMorphTypeField() |
||
| 877 | { |
||
| 878 | $this->crudPanel->setModel(Star::class); |
||
| 879 | $this->expectException(\Exception::class); |
||
| 880 | $this->crudPanel->field('some_field') |
||
| 881 | ->morphTypeField(['attributes' => ['custom-attribute' => true]]); |
||
| 882 | } |
||
| 883 | |||
| 884 | public function testAbortsConfiguringNonMorphIdField() |
||
| 885 | { |
||
| 886 | $this->crudPanel->setModel(Star::class); |
||
| 887 | $this->expectException(\Exception::class); |
||
| 888 | $this->crudPanel->field('some_field') |
||
| 889 | ->morphIdField(['attributes' => ['custom-attribute' => true]]); |
||
| 890 | } |
||
| 891 | |||
| 892 | public function testItCanGetTheFieldAttributes() |
||
| 893 | { |
||
| 894 | $this->crudPanel->field('some_field'); |
||
| 895 | |||
| 896 | $this->assertEquals($this->crudPanel->fields()['some_field'], $this->crudPanel->field('some_field')->getAttributes()); |
||
| 897 | } |
||
| 898 | |||
| 899 | public function testItAbortsWithEmptyNamesFluently() |
||
| 900 | { |
||
| 901 | try { |
||
| 902 | CrudField::name(''); |
||
| 903 | } catch (\Throwable $e) { |
||
| 904 | } |
||
| 905 | $this->assertEquals( |
||
| 906 | new \Symfony\Component\HttpKernel\Exception\HttpException(500, 'Field name can\'t be empty.', null, ['developer-error-exception']), |
||
| 907 | $e |
||
| 908 | ); |
||
| 909 | } |
||
| 910 | |||
| 911 | public function testCheckReturnTypesForWhenInferringRelation() |
||
| 912 | { |
||
| 913 | $this->crudPanel->setModel(\Backpack\CRUD\Tests\config\Models\UserWithReturnTypes::class); |
||
| 914 | $this->crudPanel->addField('isAnAttribute'); |
||
| 915 | $this->crudPanel->addField('isARelation'); |
||
| 916 | |||
| 917 | $this->assertEquals(false, $this->crudPanel->fields()['isAnAttribute']['entity']); |
||
| 918 | $this->assertEquals('isARelation', $this->crudPanel->fields()['isARelation']['entity']); |
||
| 919 | } |
||
| 920 | |||
| 921 | public function testItCanGetTheFirstFieldViewWithoutProvidingNamespace() |
||
| 922 | { |
||
| 923 | $this->assertEquals('backpack.theme-coreuiv2::fields.test', $this->crudPanel->getFirstFieldView('test')); |
||
| 924 | } |
||
| 925 | |||
| 926 | public function testItCanGetTheFirstFieldViewInProvidedNamespace() |
||
| 927 | { |
||
| 928 | $this->assertEquals('backpack.theme-coreuiv2::fields.custom_namespace.test', $this->crudPanel->getFirstFieldView('test', 'backpack.theme-coreuiv2::fields.custom_namespace')); |
||
| 929 | } |
||
| 930 | |||
| 931 | public function testItDoesntAttemptToMoveFieldsIfTheyDontExist() |
||
| 934 | } |
||
| 935 | |||
| 936 | public function testItThrowExceptionWhenViewNotFound() |
||
| 937 | { |
||
| 938 | $this->expectException(\Exception::class); |
||
| 939 | $this->crudPanel->getFirstFieldView('test2'); |
||
| 940 | } |
||
| 941 | |||
| 942 | public function testItCanGetUploadFieldsFromSubfields() |
||
| 943 | { |
||
| 944 | $this->crudPanel->addField([ |
||
| 945 | 'name' => 'test1', |
||
| 946 | 'subfields' => [ |
||
| 947 | ['name' => 'test1_1', 'upload' => true], |
||
| 948 | ['name' => 'test1_2'], |
||
| 949 | ], |
||
| 950 | ]); |
||
| 951 | $this->crudPanel->addField([ |
||
| 952 | 'name' => 'test2', |
||
| 953 | 'subfields' => [ |
||
| 954 | ['name' => 'test2_1'], |
||
| 955 | ['name' => 'test2_2'], |
||
| 956 | ], |
||
| 961 | } |
||
| 962 | |||
| 963 | public function testItCanMarkAFieldTypeAsLoaded() |
||
| 964 | { |
||
| 965 | $this->crudPanel->addField([ |
||
| 966 | 'name' => 'test1', |
||
| 967 | 'type' => 'text', |
||
| 968 | ]); |
||
| 969 | $field = $this->crudPanel->fields()['test1']; |
||
| 970 | $this->assertTrue($this->crudPanel->markFieldTypeAsLoaded($field)); |
||
| 971 | $this->assertFalse($this->crudPanel->markFieldTypeAsLoaded($field)); |
||
| 972 | $this->assertTrue($this->crudPanel->fieldTypeLoaded($field)); |
||
| 973 | $this->assertTrue($this->crudPanel->fieldTypeNotLoaded(['type' => 'test'])); |
||
| 974 | $this->assertEquals(['text'], $this->crudPanel->getLoadedFieldTypes()); |
||
| 975 | } |
||
| 976 | |||
| 977 | public function testItCanGetFieldNamesFromNamesWithCommas() |
||
| 981 | } |
||
| 982 | |||
| 983 | public function testItCanInferFieldAttributesFromADynamicRelation() |
||
| 984 | { |
||
| 985 | User::resolveRelationUsing('dynamicRelation', function ($user) { |
||
| 986 | return $user->hasOne(\Backpack\CRUD\Tests\config\Models\AccountDetails::class); |
||
| 987 | }); |
||
| 988 | |||
| 989 | $this->crudPanel->setModel(User::class); |
||
| 990 | $this->crudPanel->addField('dynamicRelation.nickname'); |
||
| 991 | |||
| 992 | $this->assertEquals([ |
||
| 993 | 'name' => 'dynamicRelation[nickname]', |
||
| 994 | 'type' => 'relationship', |
||
| 995 | 'entity' => 'dynamicRelation.nickname', |
||
| 996 | 'relation_type' => 'HasOne', |
||
| 997 | 'attribute' => 'nickname', |
||
| 998 | 'model' => 'Backpack\CRUD\Tests\Config\Models\AccountDetails', |
||
| 999 | 'multiple' => false, |
||
| 1000 | 'pivot' => false, |
||
| 1001 | 'label' => 'DynamicRelation.nickname', |
||
| 1002 | ], $this->crudPanel->fields()['dynamicRelation.nickname']); |
||
| 1003 | } |
||
| 1004 | } |
||
| 1005 | |||
| 1006 | class Invokable |
||
| 1007 | { |
||
| 1008 | public function __invoke(): array |
||
| 1009 | { |
||
| 1010 | return ['invokable' => 'invokable']; |
||
| 1011 | } |
||
| 1012 | } |
||
| 1013 |