-
Notifications
You must be signed in to change notification settings - Fork 7
/
field_collection.test
1311 lines (1133 loc) · 51.9 KB
/
field_collection.test
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* @file
* Tests for field_collections.
*/
/**
* Test basics.
*/
class FieldCollectionBasicTestCase extends BackdropWebTestCase {
protected $field_name;
protected $field;
protected $field_id;
protected $instance;
/**
*
*/
public function setUp() {
parent::setUp('entity_plus', 'field_collection', 'entity_crud_hook_test');
backdrop_static_reset('_field_info_collate_types');
// Create a field_collection field to use for the tests.
$this->field_name = 'field_test_collection';
$this->field = array(
'field_name' => $this->field_name,
'type' => 'field_collection',
'cardinality' => 4,
);
$this->field = field_create_field($this->field);
$this->field_id = $this->field['field_name'];
$this->instance = array(
'field_name' => $this->field_name,
'entity_type' => 'node',
'bundle' => 'post',
'label' => self::randomName() . '_label',
'description' => self::randomName() . '_description',
'weight' => random_int(0, 127),
'settings' => array(),
'widget' => array(
'type' => 'hidden',
'label' => 'Test',
'settings' => array(),
),
);
$this->instance = field_create_instance($this->instance);
}
/**
* Pass if the message $text was set by one of the CRUD hooks in
* entity_crud_hook_test.module, i.e., if the $text is an element of
* $_SESSION['entity_crud_hook_test'].
*
* @see EntityCrudHookTestCase::assertHookMessage()
* @see FieldCollectionBasicTestCase::assertNoHookMessage()
* @see FieldCollectionBasicTestCase::clearHookMessages()
*
* @param $text
* Plain text to look for.
* @param $message
* Message to display.
* @param $group
* The group this message belongs to, defaults to 'Other'.
*
* @return
* TRUE on pass, FALSE on fail.
*/
protected function assertHookMessage($text, $message = NULL, $group = 'Other') {
if (!isset($message)) {
$message = $text;
}
return $this->assertTrue(in_array($text, $_SESSION['entity_crud_hook_test']), $message, $group);
}
/**
* Fail if the message $text was set by one of the CRUD hooks in
* entity_crud_hook_test.module, i.e., if the $text is an element of
* $_SESSION['entity_crud_hook_test'].
*
* @see FieldCollectionBasicTestCase::assertHookMessage()
* @see FieldCollectionBasicTestCase::clearHookMessages()
*
* @param $text
* Plain text to look for.
* @param $message
* Message to display.
* @param $group
* The group this message belongs to, defaults to 'Other'.
*
* @return bool
* TRUE on pass, FALSE on fail.
*/
protected function assertNoHookMessage($text, $message = NULL, $group = 'Other') {
if (!isset($message)) {
$message = $text;
}
return $this->assertFalse(in_array($text, $_SESSION['entity_crud_hook_test']), $message, $group);
}
/**
* Clear hook messages recorded by entity_crud_hook_test.
*
* @see FieldCollectionBasicTestCase::assertHookMessage()
* @see FieldCollectionBasicTestCase::assertNoHookMessage()
*/
protected function clearHookMessages() {
$_SESSION['entity_crud_hook_test'] = array();
}
/**
* Helper for creating a new node with a field collection item.
*/
protected function createNodeWithFieldCollection() {
$node = $this->backdropCreateNode(array('type' => 'post'));
// Manually create a field_collection.
$entity = entity_create('field_collection_item', array('field_name' => $this->field_name));
$entity->setHostEntity('node', $node);
$entity->save();
return array($node, $entity);
}
/**
* Tests CRUD.
*/
public function testCRUD() {
list($node, $entity) = $this->createNodeWithFieldCollection();
$node = node_load($node->nid, NULL, TRUE);
$this->assertEqual($entity->item_id, $node->{$this->field_name}[LANGUAGE_NONE][0]['value'], 'A field_collection has been successfully created and referenced.');
$this->assertEqual($entity->revision_id, $node->{$this->field_name}[LANGUAGE_NONE][0]['revision_id'], 'A field_collection has been successfully created and referenced.');
// Test adding an additional field_collection during node edit.
$entity2 = entity_create('field_collection_item', array('field_name' => $this->field_name));
$node->{$this->field_name}[LANGUAGE_NONE][] = array('entity' => $entity2);
node_save($node);
$node = node_load($node->nid, NULL, TRUE);
$this->assertTrue(!empty($entity2->item_id) && !empty($entity2->revision_id), 'Field_collection has been saved.');
$this->assertEqual($entity->item_id, $node->{$this->field_name}[LANGUAGE_NONE][0]['value'], 'Existing reference has been kept during update.');
$this->assertEqual($entity->revision_id, $node->{$this->field_name}[LANGUAGE_NONE][0]['revision_id'], 'Existing reference has been kept during update (revision).');
$this->assertEqual($entity2->item_id, $node->{$this->field_name}[LANGUAGE_NONE][1]['value'], 'New field_collection has been properly referenced');
$this->assertEqual($entity2->revision_id, $node->{$this->field_name}[LANGUAGE_NONE][1]['revision_id'], 'New field_collection has been properly referenced (revision)');
// Make sure deleting the field_collection removes the reference.
$this->clearHookMessages();
$entity2->delete();
$this->assertHookMessage('entity_crud_hook_test_entity_presave called for type node');
$node = node_load($node->nid, NULL, TRUE);
$this->assertTrue(!isset($node->{$this->field_name}[LANGUAGE_NONE][1]), 'Reference correctly deleted.');
// Make sure field_collections are removed during deletion of the host.
$this->clearHookMessages();
node_delete($node->nid);
$this->assertNoHookMessage('entity_crud_hook_test_entity_presave called for type node');
$this->assertTrue(entity_load_multiple('field_collection_item') === array(), 'Field collections are deleted when the host is deleted.');
// Try deleting nodes with collections without any values.
$node = $this->backdropCreateNode(array('type' => 'post'));
node_delete($node->nid);
$this->assertTrue(node_load($node->nid, NULL, TRUE) == FALSE, 'Node without collection values deleted.');
// Test creating a field collection entity with a not-yet saved host entity.
$node = entity_create('node', array('type' => 'post', 'uid' => 1));
$entity = entity_create('field_collection_item', array('field_name' => $this->field_name));
$entity->setHostEntity('node', $node);
$entity->save();
// Now the node should have been saved with the collection and the link
// should have been established.
$this->assertTrue(!empty($node->nid), 'Node has been saved with the collection.');
$this->assertTrue(count($node->{$this->field_name}[LANGUAGE_NONE]) == 1 && !empty($node->{$this->field_name}[LANGUAGE_NONE][0]['value']) && !empty($node->{$this->field_name}[LANGUAGE_NONE][0]['revision_id']), 'Link has been established.');
// Again, test creating a field collection with a not-yet saved host entity,
// but this time save both entities via the host.
$node = entity_create('node', array('type' => 'post', 'uid' => 1));
$entity = entity_create('field_collection_item', array('field_name' => $this->field_name));
$entity->setHostEntity('node', $node);
node_save($node);
$this->assertTrue(!empty($entity->item_id) && !empty($entity->revision_id), 'Collection has been saved with the host.');
$this->assertTrue(count($node->{$this->field_name}[LANGUAGE_NONE]) == 1 && !empty($node->{$this->field_name}[LANGUAGE_NONE][0]['value']) && !empty($node->{$this->field_name}[LANGUAGE_NONE][0]['revision_id']), 'Link has been established.');
// Test Revisions.
list($node, $item) = $this->createNodeWithFieldCollection();
$entity2 = entity_create('field_collection_item', array('field_name' => $this->field_name));
$node->{$this->field_name}[LANGUAGE_NONE][] = array('entity' => $entity2);
node_save($node);
$this->assertEqual($entity2->archived, FALSE, 'New field collection item with new content revision is not archived.');
// Test saving a new revision of a node.
$node->revision = TRUE;
node_save($node);
$item_updated = field_collection_item_load($node->{$this->field_name}[LANGUAGE_NONE][0]['value']);
$this->assertNotEqual($item->revision_id, $item_updated->revision_id, 'Creating a new host entity revision creates a new field collection revision.');
// Test saving a new revision with a new field collection item.
$node->revision = TRUE;
// Test saving the node without creating a new revision.
$item = $item_updated;
$node->revision = FALSE;
node_save($node);
$item_updated = field_collection_item_load($node->{$this->field_name}[LANGUAGE_NONE][0]['value']);
$this->assertEqual($item->revision_id, $item_updated->revision_id, 'Updating a new host entity without creating a new revision does not create a new field collection revision.');
// Create a new revision of the node, such we have a non default node and
// field collection revision. Then test using it.
$vid = $node->vid;
$item_revision_id = $item_updated->revision_id;
$node->revision = TRUE;
node_save($node);
$item_updated = field_collection_item_load($node->{$this->field_name}[LANGUAGE_NONE][0]['value']);
$this->assertNotEqual($item_revision_id, $item_updated->revision_id, 'Creating a new host entity revision creates a new field collection revision.');
$this->assertTrue($item_updated->isDefaultRevision(), 'Field collection of default host entity revision is default too.');
$this->assertEqual($item_updated->hostEntityId(), $node->nid, 'Can access host entity ID of default field collection revision.');
$this->assertEqual($item_updated->hostEntity()->vid, $node->vid, 'Loaded default host entity revision.');
$item = entity_plus_revision_load('field_collection_item', $item_revision_id);
$this->assertFalse($item->isDefaultRevision(), 'Field collection of non-default host entity is non-default too.');
$this->assertEqual($item->hostEntityId(), $node->nid, 'Can access host entity ID of non-default field collection revision.');
$this->assertEqual($item->hostEntity()->vid, $vid, 'Loaded non-default host entity revision.');
// Delete the non-default revision and make sure the field collection item
// revision has been deleted too.
entity_plus_revision_delete('node', $vid);
$this->assertFalse(entity_plus_revision_load('node', $vid), 'Host entity revision deleted.');
$this->assertFalse(entity_plus_revision_load('field_collection_item', $item_revision_id), 'Field collection item revision deleted.');
// Test having archived field collections, i.e. collections referenced only
// in non-default revisions.
list($node, $item) = $this->createNodeWithFieldCollection();
// Create two revisions.
$node_vid = $node->vid;
$node->revision = TRUE;
node_save($node);
$node_vid2 = $node->vid;
$node->revision = TRUE;
node_save($node);
// Now delete the field collection item for the default revision.
$item = field_collection_item_load($node->{$this->field_name}[LANGUAGE_NONE][0]['value']);
$item_revision_id = $item->revision_id;
$item->deleteRevision();
$node = node_load($node->nid);
$this->assertTrue(!isset($node->{$this->field_name}[LANGUAGE_NONE][0]), 'Field collection item revision removed from host.');
$this->assertFalse(field_collection_item_revision_load($item->revision_id), 'Field collection item default revision deleted.');
$item = field_collection_item_load($item->item_id);
$this->assertNotEqual($item->revision_id, $item_revision_id, 'Field collection default revision has been updated.');
$this->assertTrue($item->archived, 'Field collection item has been archived.');
$this->assertFalse($item->isInUse(), 'Field collection item specified as not in use.');
$this->assertTrue($item->isDefaultRevision(), 'Field collection of non-default host entity is default (but archived).');
$this->assertEqual($item->hostEntityId(), $node->nid, 'Can access host entity ID of non-default field collection revision.');
$this->assertEqual($item->hostEntity()->nid, $node->nid, 'Loaded non-default host entity revision.');
// Test deleting a revision of an archived field collection.
$node_revision2 = node_load($node->nid, $node_vid2);
$item = field_collection_item_revision_load($node_revision2->{$this->field_name}[LANGUAGE_NONE][0]['revision_id']);
$item->deleteRevision();
// There should be one revision left, so the item should still exist.
$item = field_collection_item_load($item->item_id);
$this->assertTrue($item->archived, 'Field collection item is still archived.');
$this->assertFalse($item->isInUse(), 'Field collection item specified as not in use.');
// Test that deleting the first node revision deletes the whole field
// collection item as it contains its last revision.
node_revision_delete($node_vid);
$this->assertFalse(field_collection_item_load($item->item_id), 'Archived field collection deleted when last revision deleted.');
// Test that removing a field-collection item also deletes it.
list($node, $item) = $this->createNodeWithFieldCollection();
$node->{$this->field_name}[LANGUAGE_NONE] = array();
$node->revision = FALSE;
node_save($node);
$this->assertFalse(field_collection_item_load($item->item_id), 'Removed field collection item has been deleted.');
// Test removing a field-collection item while creating a new host revision.
list($node, $item) = $this->createNodeWithFieldCollection();
$node->{$this->field_name}[LANGUAGE_NONE] = array();
$node->revision = TRUE;
node_save($node);
// Item should not be deleted but archived now.
$item = field_collection_item_load($item->item_id);
$this->assertTrue($item, 'Removed field collection item still exists.');
$this->assertTrue($item->archived, 'Removed field collection item is archived.');
// Test removing an old node revision. Make sure that the field collection
// is not removed.
list($node, $item) = $this->createNodeWithFieldCollection();
$node_vid = $node->vid;
$node->revision = TRUE;
node_save($node);
$node_vid2 = $node->vid;
$item_vid2 = $node->{$this->field_name}[LANGUAGE_NONE][0]['revision_id'];
node_revision_delete($node_vid);
$item2 = field_collection_item_revision_load($item_vid2);
$item_id2 = isset($item2->item_id) ? $item2->item_id : -1;
$this->assertEqual($item_id2, $item->item_id, 'Removing an old node revision does not delete newer field collection revisions');
}
/**
* Make sure the basic UI and access checks are working.
*/
public function testBasicUI() {
// Add a field to the collection.
$field = array(
'field_name' => 'field_text',
'type' => 'text',
'cardinality' => 1,
'translatable' => FALSE,
);
field_create_field($field);
$instance = array(
'entity_type' => 'field_collection_item',
'field_name' => 'field_text',
'bundle' => $this->field_name,
'label' => 'Test text field',
'widget' => array(
'type' => 'text_textfield',
),
);
field_create_instance($instance);
$user = $this->backdropCreateUser();
$node = $this->backdropCreateNode(array('type' => 'post'));
$this->backdropLogin($user);
// Make sure access is denied.
$path = 'field-collection/field-test-collection/add/node/' . $node->nid;
$this->backdropGet($path);
$this->assertText(t('You are not authorized to access this page.'), 'Access has been denied.');
$user_privileged = $this->backdropCreateUser(array(
'access content',
'edit any post content',
'edit field collections',
));
$this->backdropLogin($user_privileged);
$this->backdropGet("node/$node->nid");
$this->assertLinkByHref($path, 0, 'Add link is shown.');
$this->backdropGet($path);
$this->assertText(t('Test text field'), 'Add form is shown.');
$edit['field_text[und][0][value]'] = self::randomName();
$this->backdropPost($path, $edit, t('Save'));
$this->assertText(t('The changes have been saved.'), 'Field collection saved.');
$this->assertText($edit['field_text[und][0][value]'], 'Added field value is shown.');
$edit['field_text[und][0][value]'] = self::randomName();
$this->backdropPost('field-collection/field-test-collection/1/edit', $edit, t('Save'));
$this->assertText(t('The changes have been saved.'), 'Field collection saved.');
$this->assertText($edit['field_text[und][0][value]'], 'Field collection has been edited.');
$this->backdropGet('field-collection/field-test-collection/1');
$this->assertText($edit['field_text[und][0][value]'], 'Field collection can be viewed.');
// Add further 3 items, so we have reached 4 == maxium cardinality.
$this->backdropPost($path, $edit, t('Save'));
$this->backdropPost($path, $edit, t('Save'));
$this->backdropPost($path, $edit, t('Save'));
// Make sure adding doesn't work any more as we have restricted cardinality
// to 1.
$this->backdropGet($path);
$this->assertResponse(403);
$this->backdropPost('field-collection/field-test-collection/1/delete', array(), t('Delete'));
$this->backdropGet($path);
// Add form is shown again.
$this->assertText(t('Test text field'), 'Field collection item has been deleted.');
// Test the viewing a revision. There should be no links to change it.
$vid = $node->vid;
$node = node_load($node->nid, NULL, TRUE);
$node->revision = TRUE;
node_save($node);
$this->backdropGet("node/$node->nid/revisions/$vid/view");
$this->assertResponse(403, 'Access to view revision denied');
// Login in as admin and try again.
$user = $this->backdropCreateUser(array('administer nodes', 'bypass node access'));
$this->backdropLogin($user);
$this->backdropGet("node/$node->nid/revisions/$vid/view");
$this->assertNoResponse(403, 'Access to view revision granted');
$this->assertNoLinkByHref($path, 'No links on revision view.');
$this->assertNoLinkByHref('field-collection/field-test-collection/2/edit', 'No links on revision view.');
$this->assertNoLinkByHref('field-collection/field-test-collection/2/delete', 'No links on revision view.');
$this->backdropGet("node/$node->nid/revisions");
}
/**
* Make sure that field_collection-entities are copied when host-entities do.
*/
public function testCopyingEntities() {
list($node, $entity) = $this->createNodeWithFieldCollection();
// Create a copy of that node.
$node->nid = NULL;
$node->vid = NULL;
$node->is_new = TRUE;
node_save($node);
$item = $node->{$this->field_name}[LANGUAGE_NONE][0];
$this->assertNotEqual($entity->item_id, $item['value']);
// Do a php clone to the $node object and save it.
$node2 = clone $node;
$node2->nid = NULL;
$node2->is_new = TRUE;
$node2->vid = NULL;
node_save($node2);
$item2 = $node2->{$this->field_name}[LANGUAGE_NONE][0];
$this->assertNotEqual($item2['value'], $item['value']);
// Create another copy this time (needlessly) forcing a new revision.
$node->nid = NULL;
$node->vid = NULL;
$node->is_new = TRUE;
$node->revision = TRUE;
node_save($node);
$item3 = $node->{$this->field_name}[LANGUAGE_NONE][0];
$this->assertNotEqual($item['value'], $item3['value']);
}
}
/**
* Test using field collection with Rules.
*/
class FieldCollectionRulesIntegrationTestCase extends BackdropWebTestCase {
protected $field_name;
protected $field_id;
protected $field;
protected $instance;
/**
*
*/
public function setUp() {
parent::setUp(array(
'entity_plus',
'field_collection',
'entity_ui',
'entity_token',
'rules',
));
config_set('rules.settings', 'rules_debug_log', 1);
backdrop_static_reset('_field_info_collate_types');
}
/**
*
*/
protected function createFields($cardinality = 4) {
// Create a field_collection field to use for the tests.
$this->field_name = 'field_test_collection';
$this->field = array('field_name' => $this->field_name, 'type' => 'field_collection', 'cardinality' => $cardinality);
$this->field = field_create_field($this->field);
$this->field_id = $this->field['field_name'];
$this->instance = array(
'field_name' => $this->field_name,
'entity_type' => 'node',
'bundle' => 'post',
'label' => self::randomName() . '_label',
'description' => self::randomName() . '_description',
'weight' => random_int(0, 127),
'settings' => array(),
'widget' => array(
'type' => 'hidden',
'label' => 'Test',
'settings' => array(),
),
);
$this->instance = field_create_instance($this->instance);
// Add a field to the collection.
$field = array(
'field_name' => 'field_text',
'type' => 'text',
'cardinality' => 1,
'translatable' => FALSE,
);
field_create_field($field);
$instance = array(
'entity_type' => 'field_collection_item',
'field_name' => 'field_text',
'bundle' => $this->field_name,
'label' => 'Test text field',
'widget' => array(
'type' => 'text_textfield',
),
);
field_create_instance($instance);
}
/**
* Test creation field collection items.
*/
public function testCreation() {
$this->createFields();
$node = $this->backdropCreateNode(array('type' => 'post'));
// Create a field collection.
$action_set = rules_action_set(array('node' => array('type' => 'node', 'bundle' => 'post')));
$action_set->action('entity_create', array(
'type' => 'field_collection_item',
'param_field_name' => $this->field_name,
'param_host_entity:select' => 'node',
));
$action_set->action('data_set', array('data:select' => 'entity-created:field-text', 'value' => 'foo'));
$action_set->execute($node);
$node = node_load($node->nid, NULL, TRUE);
$this->assertTrue(!empty($node->{$this->field_name}[LANGUAGE_NONE][0]['value']), 'A field_collection has been successfully created.');
$this->assertTrue(!empty($node->{$this->field_name}[LANGUAGE_NONE][0]['revision_id']), 'A field_collection has been successfully created (revision).');
// Now try making use of the field collection in rules.
$action_set = rules_action_set(array('node' => array('type' => 'node', 'bundle' => 'post')));
$action_set->action('backdrop_message', array('message:select' => 'node:field-test-collection:0:field-text'));
$action_set->execute($node);
$msg = backdrop_get_messages();
$this->assertEqual(array_pop($msg['info']), 'foo', 'Field collection can be used.');
RulesLog::logger()->checkLog();
}
/**
* Test using field collection items via the host while they are being created.
*/
public function testUsageDuringCreation() {
// Test using a single-cardinality field collection.
$this->createFields(1);
$node = $this->backdropCreateNode(array('type' => 'post'));
$entity = entity_create('field_collection_item', array('field_name' => $this->field_name));
$entity->setHostEntity('node', $node);
// Now the field collection is linked to the host, but not yet saved.
// Test using the wrapper on it.
$wrapper = entity_metadata_wrapper('node', $node);
$wrapper->get($this->field_name)->field_text->set('foo');
$this->assertEqual($entity->field_text[LANGUAGE_NONE][0]['value'], 'foo', 'Field collection item used during creation via the wrapper.');
// Now test it via Rules, which should save our changes.
$set = rules_action_set(array('node' => array('type' => 'node', 'bundle' => 'post')));
$set->action('data_set', array('data:select' => 'node:' . $this->field_name . ':field-text', 'value' => 'bar'));
$set->execute($node);
$this->assertEqual($entity->field_text[LANGUAGE_NONE][0]['value'], 'bar', 'Field collection item used during creation via Rules.');
$this->assertTrue(!empty($entity->item_id) && !empty($entity->revision_id), 'Field collection item has been saved by Rules and the host entity.');
RulesLog::logger()->checkLog();
}
}
/**
* Test using field collection with content that gets translated.
*/
class FieldCollectionContentTranslationTestCase extends BackdropWebTestCase {
protected $field_name;
protected $field;
protected $field_id;
protected $instance;
/**
*
*/
public function setUp() {
parent::setUp(array('entity_plus', 'field_collection', 'language', 'locale', 'translation'));
backdrop_static_reset('_field_info_collate_types');
// Create a field_collection field to use for the tests.
$this->field_name = 'field_test_collection';
$this->field = array('field_name' => $this->field_name, 'type' => 'field_collection', 'cardinality' => 4);
$this->field = field_create_field($this->field);
$this->field_id = $this->field['field_name'];
$this->instance = array(
'field_name' => $this->field_name,
'entity_type' => 'node',
'bundle' => 'post',
'label' => self::randomName() . '_label',
'description' => self::randomName() . '_description',
'weight' => random_int(0, 127),
'settings' => array(),
'widget' => array(
'type' => 'field_collection_embed',
'label' => 'Test',
'settings' => array(),
),
);
$this->instance = field_create_instance($this->instance);
// Add a field to the collection.
$field = array(
'field_name' => 'field_text',
'type' => 'text',
'cardinality' => 1,
'translatable' => FALSE,
);
field_create_field($field);
$instance = array(
'entity_type' => 'field_collection_item',
'field_name' => 'field_text',
'bundle' => $this->field_name,
'label' => 'Test text field',
'widget' => array(
'type' => 'text_textfield',
),
);
field_create_instance($instance);
$admin_user = $this->backdropCreateUser(array('administer languages', 'administer content types', 'access administration pages', 'create post content', 'edit any post content', 'translate content'));
$this->backdropLogin($admin_user);
// Add German language.
$german = (object) array(
'langcode' => 'de',
'name' => 'German',
'direction' => LANGUAGE_LTR,
);
language_save($german);
// Set "Post" content type to use multilingual support.
config_set('node.type.post', 'settings.language', TRANSLATION_ENABLED);
}
/**
* Ensure field collections are cloned to new entities on content translation.
*/
public function testContentTranslation() {
// Create "Article" content.
$edit['title'] = self::randomName();
$edit['body[' . LANGUAGE_NONE . '][0][value]'] = self::randomName();
$edit['langcode'] = 'en';
$field_collection_name = 'field_test_collection[' . LANGUAGE_NONE . '][0][field_text][' . LANGUAGE_NONE . '][0][value]';
$edit[$field_collection_name] = self::randomName();
$this->backdropPost('node/add/post', $edit, t('Save'));
$this->assertRaw(t('Post %title has been created.', array('%title' => $edit['title'])), 'Post created.');
$node1 = $this->backdropGetNodeByTitle($edit['title']);
$this->backdropGet('node/' . $node1->nid . '/edit');
$this->backdropGet('node/' . $node1->nid . '/translate');
$this->backdropGet('node/add/post', array('query' => array('translation' => $node1->nid, 'target' => 'de')));
// Suffix translations with the langcode.
unset($edit['langcode']);
$edit['title'] .= 'DE';
$edit[$field_collection_name] .= 'DE';
$this->backdropPost('node/add/post', $edit, t('Save'), array('query' => array('translation' => $node1->nid, 'target' => 'de')));
$node2 = $this->backdropGetNodeByTitle($edit['title']);
// Ensure that our new node is the translation of the first one.
$this->assertEqual($node1->nid, $node2->tnid, 'Succesfully created translation.');
// And check to see that their field collections are different.
$this->assertNotEqual($node1->field_test_collection, $node2->field_test_collection, 'Field collections between translation source and translation differ.');
}
}
/**
* Test using field collection with content with Entity Translation.
*
* Porting of this test to Backdrop has been postponed because of missing
* dependency.
*/
class FieldCollectionEntityTranslationTestCase extends BackdropWebTestCase {
const TRANS_FIELD_EN = 'Translatable EN';
const TRANS_FIELD_DE = 'Translatable DE';
const TRANS_FIELD_DE_MOD = 'Translatable DE Mod';
const UNTRANS_FIELD_EN = 'Untranslatable EN';
const UNTRANS_FIELD_DE = 'Untranslatable DE';
const UNTRANS_FIELD_DE_MOD = 'Untranslatable DE Mod';
const NUM_VALUES = 4;
/**
*
*/
public static function getInfo() {
return array(
'name' => 'Field collection entity translation',
'description' => 'Tests using content under translation with Entity Translation.',
'group' => 'Field types',
'dependencies' => array('entity_translation'),
);
}
/**
* Login the given user only if she has not changed.
*/
public function login($user) {
if (!isset($this->current_user) || $this->current_user->uid != $user->uid) {
$this->current_user = $user;
$this->backdropLogin($user);
}
}
/**
* Returns a user with administration rights.
*
* @param $permissions
* Additional permissions for administrative user.
*/
public function getAdminUser(array $permissions = array()) {
if (!isset($this->admin_user)) {
$this->admin_user = $this->backdropCreateUser(array_merge(array(
'bypass node access',
'administer nodes',
'administer languages',
'administer content types',
'administer blocks',
'access administration pages',
'administer site configuration',
'administer entity translation',
), $permissions));
}
return $this->admin_user;
}
/**
* Returns a user with minimal translation rights.
*
* @param $permissions
* Additional permissions for administrative user.
*/
public function getTranslatorUser(array $permissions = array()) {
if (!isset($this->translator_user)) {
$this->translator_user = $this->backdropCreateUser(array_merge(array(
'create page content',
'edit own page content',
'delete own page content',
'translate any entity',
), $permissions));
}
return $this->translator_user;
}
/**
* Install a specified language if it has not been already, otherwise make
* sure that the language is enabled.
*
* @param string $langcode
* The language code to check.
*/
public function addLanguage($langcode) {
// Check to make sure that language has not already been installed.
$this->backdropGet('admin/config/regional/language');
if (strpos($this->backdropGetContent(), 'enabled[' . $langcode . ']') === FALSE) {
// Doesn't have language installed so add it.
$edit = array();
$edit['langcode'] = $langcode;
$this->backdropPost('admin/config/regional/language/add', $edit, t('Add language'));
// Make sure we are not using a stale list.
backdrop_static_reset('language_list');
$languages = language_list();
$this->assertTrue(array_key_exists($langcode, $languages), t('Language was installed successfully.'));
if (array_key_exists($langcode, $languages)) {
$this->assertRaw(t('The language %language has been created and can now be used. More information is available on the <a href="@locale-help">help screen</a>.', array('%language' => $languages[$langcode]->name, '@locale-help' => url('admin/help/locale'))), t('Language has been created.'));
}
}
elseif ($this->xpath('//input[@type="checkbox" and @name=:name and @checked="checked"]', array(':name' => 'enabled[' . $langcode . ']'))) {
// It is installed and enabled. No need to do anything.
$this->assertTrue(TRUE, 'Language [' . $langcode . '] already installed and enabled.');
}
else {
// It is installed but not enabled. Enable it.
$this->assertTrue(TRUE, 'Language [' . $langcode . '] already installed.');
$this->backdropPost(NULL, array('enabled[' . $langcode . ']' => TRUE), t('Save configuration'));
$this->assertRaw(t('Configuration saved.'), t('Language successfully enabled.'));
}
}
/**
*
*/
public function setUp() {
parent::setUp(array('field_collection', 'entity_translation'));
$language_none = LANGUAGE_NONE;
// Login with an admin user.
$this->login($this->getAdminUser());
// Add English and German languages.
$this->addLanguage('en');
$this->addLanguage('de');
// Set "Article" content type to use multilingual support with translation.
$edit = array();
$edit['language_content_type'] = ENTITY_TRANSLATION_ENABLED;
$this->backdropPost('admin/structure/types/manage/page', $edit, t('Save content type'));
$this->assertRaw(t('The content type %type has been updated.', array('%type' => 'Basic page')), t('Basic page content type has been updated.'));
// Create a field collection field to use for the tests.
$this->field_name = 'field_test_collection';
$this->field_base = "{$this->field_name}[$language_none]";
$this->field = array(
'field_name' => $this->field_name,
'type' => 'field_collection',
'cardinality' => -1,
'translatable' => TRUE,
);
$this->field = field_create_field($this->field);
$this->field_id = $this->field['id'];
$this->instance = array(
'field_name' => $this->field_name,
'entity_type' => 'node',
'bundle' => 'page',
'label' => self::randomName() . '_label',
'description' => self::randomName() . '_description',
'weight' => random_int(0, 127),
'settings' => array(),
'widget' => array(
'type' => 'field_collection_embed',
'label' => 'Test',
'settings' => array(),
),
);
$this->instance = field_create_instance($this->instance);
// Enable entity translation of field collections.
$this->backdropGet('admin/config/regional/entity_translation');
$this->backdropPost('admin/config/regional/entity_translation', array('entity_translation_entity_types[field_collection_item]' => TRUE), t('Save configuration'));
$this->assertRaw(t('The configuration options have been saved.'), t('Entity translation of field collections enabled.'));
// Add an untraslatable field to the collection.
$this->field_untrans_name = 'field_text_untrans';
$this->field_untrans_base = "[{$this->field_untrans_name}][$language_none][0][value]";
$field = array(
'field_name' => $this->field_untrans_name,
'type' => 'text',
'cardinality' => 1,
'translatable' => FALSE,
);
field_create_field($field);
$instance = array(
'entity_type' => 'field_collection_item',
'field_name' => $this->field_untrans_name,
'bundle' => $this->field_name,
'label' => 'Test untranslatable text field',
'widget' => array(
'type' => 'text_textfield',
),
);
field_create_instance($instance);
// Add a translatable field to the collection.
$this->field_trans_name = 'field_text_trans';
$this->field_trans_base = "[{$this->field_trans_name}][$language_none][0][value]";
$this->field_trans_dest = "[{$this->field_trans_name}][de][0][value]";
$field = array(
'field_name' => $this->field_trans_name,
'type' => 'text',
'cardinality' => 1,
'translatable' => TRUE,
);
field_create_field($field);
$instance = array(
'entity_type' => 'field_collection_item',
'field_name' => $this->field_trans_name,
'bundle' => $this->field_name,
'label' => 'Test translatable text field',
'widget' => array(
'type' => 'text_textfield',
),
);
field_create_instance($instance);
$this->login($this->getTranslatorUser());
}
/**
* Creates a basic page with a value in the field collection.
*
* @param int $num_values
* The number of values to include in the field collection.
* @param string $langcode
* Language for the node.
*/
protected function createPage($num_values, $langcode = 'en') {
// Check if num_values is greater than the field cardinality.
if ($num_values > self::NUM_VALUES) {
$num_values = self::NUM_VALUES;
}
$title = self::randomName();
$this->backdropGet('node/add/page');
$edit = array();
$edit['title'] = $title;
for ($i = 0; $i < $num_values; $i++) {
if ($i != 0) {
$this->backdropPost(NULL, array(), t('Add another item'));
}
$edit[$this->field_base . '[' . $i . ']' . $this->field_untrans_base] = self::UNTRANS_FIELD_EN . '_' . $i;
$edit[$this->field_base . '[' . $i . ']' . $this->field_trans_base] = self::TRANS_FIELD_EN . '_' . $i;
}
$edit['language'] = $langcode;
$this->backdropPost(NULL, $edit, t('Save'));
$this->assertRaw(t('Basic page %title has been created.', array('%title' => $title)), t('Basic page created.'));
// Check to make sure the node was created.
$node = $this->backdropGetNodeByTitle($title);
$this->assertTrue($node, t('Node found in database.'));
return $node;
}
/**
* Create a translation using the Entity Translation Form.
*
* @param mixed $node
* Node of the basic page to create translation for.
* @param string $langcode
* The language code of the translation.
* @param string $source_langcode
* The original language code.
*/
protected function createTranslationForm($node, $langcode, $source_langcode = 'en') {
$language_none = LANGUAGE_NONE;
$edit = array();
$this->backdropGet('node/' . $node->nid . '/edit/add/' . $source_langcode . '/' . $langcode);
// Get the field collection in the original language.
$fc_values = $node->{$this->field_name}[$source_langcode];
// Check if all the fields were populated and fill it with the new value.
foreach ($fc_values as $delta => $fc_value) {
// Load the field collection item.
$fc_item_array = entity_load('field_collection_item', array($fc_value['value']));
$fc_item = reset($fc_item_array);
$fc_untrans_key = "{$this->field_name}[$langcode][$delta]{$this->field_untrans_base}";
$fc_trans_key = "{$this->field_name}[$langcode][$delta]{$this->field_trans_dest}";
$this->assertFieldByXPath(
"//input[@name='$fc_untrans_key']",
$fc_item->{$this->field_untrans_name}[LANGUAGE_NONE][0]['value'],
'Original value of untranslatable field correctly populated'
);
$this->assertFieldByXPath(
"//input[@name='$fc_trans_key']",
$fc_item->{$this->field_trans_name}['en'][0]['value'],
'Original value of translatable field correctly populated'
);
$edit[$fc_untrans_key] = self::UNTRANS_FIELD_DE . '_' . $delta;
$edit[$fc_trans_key] = self::TRANS_FIELD_DE . '_' . $delta;
}
// Save the translation.
$this->backdropPost(NULL, $edit, t('Save'));
$this->backdropGet('node/' . $node->nid . '/translate');
$this->assertLinkByHref('node/' . $node->nid . '/edit/' . $langcode, 0, t('Translation edit link found. Translation created.'));
// Reload the node.
$node = node_load($node->nid, NULL, TRUE);
// Check the values of the translated field.
$this->checkFieldCollectionContent($node, $langcode);
// Check the values of the field in the original language.
$this->checkFieldCollectionContent($node, $source_langcode);
return $node;
}
/**
* Removes a translation using the entity translation form.
*
* @param mixed $node
* The node to remove the translation from.
* @param string $langcode
* The language of the translation to remove.
* @param string $source_langcode
* The source language of the node.
*/
protected function removeTranslationForm($node, $langcode, $source_langcode) {
// Number of field collection items in the source language.
$num_original_fc_items = count($node->{$this->field_name}[$source_langcode]);
// Fetch the translation edit form.
$this->backdropGet('node/' . $node->nid . '/edit/' . $langcode);
// Remove the translation.
$this->backdropPost(NULL, array(), t('Delete translation'));