token.test
38.1 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
<?php
/**
* @file
* Test integration for the token module.
*/
/**
* Helper test class with some added functions for testing.
*/
class TokenTestHelper extends DrupalWebTestCase {
protected $profile = 'testing';
public function setUp($modules = array()) {
$modules[] = 'path';
$modules[] = 'token';
$modules[] = 'token_test';
parent::setUp($modules);
variable_set('clean_url', 1);
}
function assertToken($type, array $data, $token, $expected, array $options = array()) {
return $this->assertTokens($type, $data, array($token => $expected), $options);
}
function assertTokens($type, array $data, array $tokens, array $options = array()) {
$input = $this->mapTokenNames($type, array_keys($tokens));
$replacements = token_generate($type, $input, $data, $options);
foreach ($tokens as $name => $expected) {
$token = $input[$name];
if (!isset($expected)) {
$this->assertTrue(!isset($values[$token]), t("Token value for @token was not generated.", array('@type' => $type, '@token' => $token)));
}
elseif (!isset($replacements[$token])) {
$this->fail(t("Token value for @token was not generated.", array('@type' => $type, '@token' => $token)));
}
elseif (!empty($options['regex'])) {
$this->assertTrue(preg_match('/^' . $expected . '$/', $replacements[$token]), t("Token value for @token was '@actual', matching regular expression pattern '@expected'.", array('@type' => $type, '@token' => $token, '@actual' => $replacements[$token], '@expected' => $expected)));
}
else {
$this->assertIdentical($replacements[$token], $expected, t("Token value for @token was '@actual', expected value '@expected'.", array('@type' => $type, '@token' => $token, '@actual' => $replacements[$token], '@expected' => $expected)));
}
}
return $replacements;
}
function mapTokenNames($type, array $tokens = array()) {
$return = array();
foreach ($tokens as $token) {
$return[$token] = "[$type:$token]";
}
return $return;
}
function assertNoTokens($type, array $data, array $tokens, array $options = array()) {
$input = $this->mapTokenNames($type, $tokens);
$replacements = token_generate($type, $input, $data, $options);
foreach ($tokens as $name) {
$token = $input[$name];
$this->assertTrue(!isset($replacements[$token]), t("Token value for @token was not generated.", array('@type' => $type, '@token' => $token)));
}
return $values;
}
function saveAlias($source, $alias, $language = LANGUAGE_NONE) {
$alias = array(
'source' => $source,
'alias' => $alias,
'language' => $language,
);
path_save($alias);
return $alias;
}
function saveEntityAlias($entity_type, $entity, $alias, $language = LANGUAGE_NONE) {
$uri = entity_uri($entity_type, $entity);
return $this->saveAlias($uri['path'], $alias, $language);
}
/**
* Make a page request and test for token generation.
*/
function assertPageTokens($url, array $tokens, array $data = array(), array $options = array()) {
if (empty($tokens)) {
return TRUE;
}
$token_page_tokens = array(
'tokens' => $tokens,
'data' => $data,
'options' => $options,
);
variable_set('token_page_tokens', $token_page_tokens);
$options += array('url_options' => array());
$this->drupalGet($url, $options['url_options']);
$this->refreshVariables();
$result = variable_get('token_page_tokens', array());
if (!isset($result['values']) || !is_array($result['values'])) {
return $this->fail('Failed to generate tokens.');
}
foreach ($tokens as $token => $expected) {
if (!isset($expected)) {
$this->assertTrue(!isset($result['values'][$token]) || $result['values'][$token] === $token, t("Token value for @token was not generated.", array('@token' => $token)));
}
elseif (!isset($result['values'][$token])) {
$this->fail(t('Failed to generate token @token.', array('@token' => $token)));
}
else {
$this->assertIdentical($result['values'][$token], (string) $expected, t("Token value for @token was '@actual', expected value '@expected'.", array('@token' => $token, '@actual' => $result['values'][$token], '@expected' => $expected)));
}
}
}
}
class TokenUnitTestCase extends TokenTestHelper {
public static function getInfo() {
return array(
'name' => 'Token unit tests',
'description' => 'Test basic, low-level token functions.',
'group' => 'Token',
);
}
/**
* Test token_get_invalid_tokens() and token_get_invalid_tokens_by_context().
*/
public function testGetInvalidTokens() {
$tests = array();
$tests[] = array(
'valid tokens' => array(
'[node:title]',
'[node:created:short]',
'[node:created:custom:invalid]',
'[node:created:custom:mm-YYYY]',
'[site:name]',
'[site:slogan]',
'[current-date:short]',
'[current-user:uid]',
'[current-user:ip-address]',
),
'invalid tokens' => array(
'[node:title:invalid]',
'[node:created:invalid]',
'[node:created:short:invalid]',
'[invalid:title]',
'[site:invalid]',
'[user:ip-address]',
'[user:uid]',
'[comment:cid]',
// Deprecated tokens
'[node:tnid]',
'[node:type]',
'[node:type-name]',
'[date:short]',
),
'types' => array('node'),
);
$tests[] = array(
'valid tokens' => array(
'[node:title]',
'[node:created:short]',
'[node:created:custom:invalid]',
'[node:created:custom:mm-YYYY]',
'[site:name]',
'[site:slogan]',
'[user:uid]',
'[current-date:short]',
'[current-user:uid]',
),
'invalid tokens' => array(
'[node:title:invalid]',
'[node:created:invalid]',
'[node:created:short:invalid]',
'[invalid:title]',
'[site:invalid]',
'[user:ip-address]',
'[comment:cid]',
// Deprecated tokens
'[node:tnid]',
'[node:type]',
'[node:type-name]',
),
'types' => array('all'),
);
foreach ($tests as $test) {
$tokens = array_merge($test['valid tokens'], $test['invalid tokens']);
shuffle($tokens);
$invalid_tokens = token_get_invalid_tokens_by_context(implode(' ', $tokens), $test['types']);
sort($invalid_tokens);
sort($test['invalid tokens']);
$this->assertEqual($invalid_tokens, $test['invalid tokens'], 'Invalid tokens detected properly: ' . implode(', ', $invalid_tokens));
}
}
}
class TokenURLTestCase extends TokenTestHelper {
public static function getInfo() {
return array(
'name' => 'URL token tests',
'description' => 'Test the URL tokens.',
'group' => 'Token',
);
}
public function setUp($modules = array()) {
parent::setUp($modules);
$this->saveAlias('node/1', 'first-node');
}
function testURLTokens() {
$tokens = array(
'absolute' => 'http://example.com/first-node',
'relative' => base_path() . 'first-node',
'path' => 'first-node',
'brief' => 'example.com/first-node',
'args:value:0' => 'first-node',
'args:value:1' => NULL,
'args:value:N' => NULL,
'unaliased' => 'http://example.com/node/1',
'unaliased:relative' => base_path() . 'node/1',
'unaliased:path' => 'node/1',
'unaliased:brief' => 'example.com/node/1',
'unaliased:args:value:0' => 'node',
'unaliased:args:value:1' => '1',
'unaliased:args:value:2' => NULL,
// Deprecated tokens.
'alias' => 'first-node',
);
$this->assertTokens('url', array('path' => 'node/1', 'options' => array('base_url' => 'http://example.com')), $tokens);
}
}
class TokenCommentTestCase extends TokenTestHelper {
public static function getInfo() {
return array(
'name' => 'Comment token tests',
'description' => 'Test the comment tokens.',
'group' => 'Token',
);
}
public function setUp($modules = array()) {
$modules[] = 'comment';
parent::setUp($modules);
}
function testCommentTokens() {
$node = $this->drupalCreateNode(array('comment' => COMMENT_NODE_OPEN));
$parent_comment = new stdClass;
$parent_comment->nid = $node->nid;
$parent_comment->pid = 0;
$parent_comment->cid = NULL;
$parent_comment->uid = 0;
$parent_comment->name = 'anonymous user';
$parent_comment->mail = 'anonymous@example.com';
$parent_comment->subject = $this->randomName();
$parent_comment->timestamp = mt_rand($node->created, REQUEST_TIME);
$parent_comment->language = LANGUAGE_NONE;
$parent_comment->body[LANGUAGE_NONE][0] = $this->randomName();
comment_save($parent_comment);
$tokens = array(
'url' => url('comment/' . $parent_comment->cid, array('fragment' => 'comment-' . $parent_comment->cid, 'absolute' => TRUE)),
'url:absolute' => url('comment/' . $parent_comment->cid, array('fragment' => 'comment-' . $parent_comment->cid, 'absolute' => TRUE)),
'url:relative' => url('comment/' . $parent_comment->cid, array('fragment' => 'comment-' . $parent_comment->cid, 'absolute' => FALSE)),
'url:path' => 'comment/' . $parent_comment->cid,
'parent:url:absolute' => NULL,
);
$this->assertTokens('comment', array('comment' => $parent_comment), $tokens);
$comment = new stdClass();
$comment->nid = $node->nid;
$comment->pid = $parent_comment->cid;
$comment->cid = NULL;
$comment->uid = 1;
$comment->subject = $this->randomName();
$comment->timestamp = mt_rand($parent_comment->created, REQUEST_TIME);
$comment->language = LANGUAGE_NONE;
$comment->body[LANGUAGE_NONE][0] = $this->randomName();
comment_save($comment);
$tokens = array(
'url' => url('comment/' . $comment->cid, array('fragment' => 'comment-' . $comment->cid, 'absolute' => TRUE)),
'url:absolute' => url('comment/' . $comment->cid, array('fragment' => 'comment-' . $comment->cid, 'absolute' => TRUE)),
'url:relative' => url('comment/' . $comment->cid, array('fragment' => 'comment-' . $comment->cid, 'absolute' => FALSE)),
'url:path' => 'comment/' . $comment->cid,
'parent:url:absolute' => url('comment/' . $parent_comment->cid, array('fragment' => 'comment-' . $parent_comment->cid, 'absolute' => TRUE)),
);
$this->assertTokens('comment', array('comment' => $comment), $tokens);
}
}
class TokenNodeTestCase extends TokenTestHelper {
protected $profile = 'standard';
public static function getInfo() {
return array(
'name' => 'Node and content type token tests',
'description' => 'Test the node and content type tokens.',
'group' => 'Token',
);
}
function testNodeTokens() {
$source_node = $this->drupalCreateNode(array('log' => $this->randomName(), 'path' => array('alias' => 'content/source-node')));
$tokens = array(
'source' => NULL,
'source:nid' => NULL,
'log' => $source_node->log,
'url:path' => 'content/source-node',
'url:absolute' => url("node/{$source_node->nid}", array('absolute' => TRUE)),
'url:relative' => url("node/{$source_node->nid}", array('absolute' => FALSE)),
'url:unaliased:path' => "node/{$source_node->nid}",
'content-type' => 'Basic page',
'content-type:name' => 'Basic page',
'content-type:machine-name' => 'page',
'content-type:description' => "Use <em>basic pages</em> for your static content, such as an 'About us' page.",
'content-type:node-count' => 1,
'content-type:edit-url' => url('admin/structure/types/manage/page', array('absolute' => TRUE)),
// Deprecated tokens.
'tnid' => 0,
'type' => 'page',
'type-name' => 'Basic page',
'url:alias' => 'content/source-node',
);
$this->assertTokens('node', array('node' => $source_node), $tokens);
$translated_node = $this->drupalCreateNode(array('tnid' => $source_node->nid, 'type' => 'article'));
$tokens = array(
'source' => $source_node->title,
'source:nid' => $source_node->nid,
'log' => '',
'url:path' => "node/{$translated_node->nid}",
'url:absolute' => url("node/{$translated_node->nid}", array('absolute' => TRUE)),
'url:relative' => url("node/{$translated_node->nid}", array('absolute' => FALSE)),
'url:unaliased:path' => "node/{$translated_node->nid}",
'content-type' => 'Article',
'content-type:name' => 'Article',
'content-type:machine-name' => 'article',
'content-type:description' => "Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.",
'content-type:node-count' => 1,
'content-type:edit-url' => url('admin/structure/types/manage/article', array('absolute' => TRUE)),
// Deprecated tokens.
'type' => 'article',
'type-name' => 'Article',
'tnid' => $source_node->nid,
'url:alias' => "node/{$translated_node->nid}",
);
$this->assertTokens('node', array('node' => $translated_node), $tokens);
}
}
class TokenMenuTestCase extends TokenTestHelper {
public static function getInfo() {
return array(
'name' => 'Menu link and menu token tests',
'description' => 'Test the menu tokens.',
'group' => 'Token',
);
}
public function setUp($modules = array()) {
$modules[] = 'menu';
parent::setUp($modules);
}
function testMenuTokens() {
// Add a root link.
$root_link = array(
'link_path' => 'root',
'link_title' => 'Root link',
'menu_name' => 'main-menu',
);
menu_link_save($root_link);
// Add another link with the root link as the parent
$parent_link = array(
'link_path' => 'root/parent',
'link_title' => 'Parent link',
'menu_name' => 'main-menu',
'plid' => $root_link['mlid'],
);
menu_link_save($parent_link);
// Test menu link tokens.
$tokens = array(
'mlid' => $parent_link['mlid'],
'title' => 'Parent link',
'menu' => 'Main menu',
'menu:name' => 'Main menu',
'menu:machine-name' => 'main-menu',
'menu:description' => 'The <em>Main</em> menu is used on many sites to show the major sections of the site, often in a top navigation bar.',
'menu:menu-link-count' => 2,
'menu:edit-url' => url("admin/structure/menu/manage/main-menu", array('absolute' => TRUE)),
'url' => url('root/parent', array('absolute' => TRUE)),
'url:absolute' => url('root/parent', array('absolute' => TRUE)),
'url:relative' => url('root/parent', array('absolute' => FALSE)),
'url:path' => 'root/parent',
'url:alias' => 'root/parent',
'edit-url' => url("admin/structure/menu/item/{$parent_link['mlid']}/edit", array('absolute' => TRUE)),
'parent' => 'Root link',
'parent:mlid' => $root_link['mlid'],
'parent:title' => 'Root link',
'parent:menu' => 'Main menu',
'parent:parent' => NULL,
'parents' => 'Root link',
'parents:count' => 1,
'parents:keys' => $root_link['mlid'],
'root' => 'Root link',
'root:mlid' => $root_link['mlid'],
'root:parent' => NULL,
'root:root' => NULL,
);
$this->assertTokens('menu-link', array('menu-link' => $parent_link), $tokens);
// Add a node menu link
$node_link = array(
'enabled' => TRUE,
'link_title' => 'Node link',
'plid' => $parent_link['mlid'],
'customized' => 0,
'description' => '',
);
$node = $this->drupalCreateNode(array('menu' => $node_link));
// Test [node:menu] tokens.
$tokens = array(
'menu-link' => 'Node link',
'menu-link:mlid' => $node->menu['mlid'],
'menu-link:title' => 'Node link',
'menu-link:menu' => 'Main menu',
'menu-link:url' => url('node/' . $node->nid, array('absolute' => TRUE)),
'menu-link:url:path' => 'node/' . $node->nid,
'menu-link:edit-url' => url("admin/structure/menu/item/{$node->menu['mlid']}/edit", array('absolute' => TRUE)),
'menu-link:parent' => 'Parent link',
'menu-link:parent:mlid' => $node->menu['plid'],
'menu-link:parent:mlid' => $parent_link['mlid'],
'menu-link:parents' => 'Root link, Parent link',
'menu-link:parents:count' => 2,
'menu-link:parents:keys' => $root_link['mlid'] . ', ' . $parent_link['mlid'],
'menu-link:root' => 'Root link',
'menu-link:root:mlid' => $root_link['mlid'],
);
$this->assertTokens('node', array('node' => $node), $tokens);
// Reload the node which will not have $node->menu defined and re-test.
$loaded_node = node_load($node->nid);
$this->assertTokens('node', array('node' => $loaded_node), $tokens);
// Regression test for http://drupal.org/node/1317926 to ensure the
// original node object is not changed when calling menu_node_prepare().
$this->assertTrue(!isset($loaded_node->menu), t('The $node->menu property was not modified during token replacement.'), 'Regression');
}
}
class TokenTaxonomyTestCase extends TokenTestHelper {
protected $vocab;
public static function getInfo() {
return array(
'name' => 'Taxonomy and vocabulary token tests',
'description' => 'Test the taxonomy tokens.',
'group' => 'Token',
);
}
public function setUp($modules = array()) {
$modules[] = 'taxonomy';
parent::setUp($modules);
// Create the default tags vocabulary.
$vocabulary = (object) array(
'name' => 'Tags',
'machine_name' => 'tags',
);
taxonomy_vocabulary_save($vocabulary);
$this->vocab = $vocabulary;
}
/**
* Test the additional taxonomy term tokens.
*/
function testTaxonomyTokens() {
$root_term = $this->addTerm($this->vocab, array('name' => 'Root term', 'path' => array('alias' => 'root-term')));
$tokens = array(
'url' => url("taxonomy/term/{$root_term->tid}", array('absolute' => TRUE)),
'url:absolute' => url("taxonomy/term/{$root_term->tid}", array('absolute' => TRUE)),
'url:relative' => url("taxonomy/term/{$root_term->tid}", array('absolute' => FALSE)),
'url:path' => 'root-term',
'url:unaliased:path' => "taxonomy/term/{$root_term->tid}",
'edit-url' => url("taxonomy/term/{$root_term->tid}/edit", array('absolute' => TRUE)),
'parents' => NULL,
'parents:count' => NULL,
'parents:keys' => NULL,
'root' => NULL,
// Deprecated tokens
'url:alias' => 'root-term',
);
$this->assertTokens('term', array('term' => $root_term), $tokens);
$parent_term = $this->addTerm($this->vocab, array('name' => 'Parent term', 'parent' => $root_term->tid));
$tokens = array(
'url' => url("taxonomy/term/{$parent_term->tid}", array('absolute' => TRUE)),
'url:absolute' => url("taxonomy/term/{$parent_term->tid}", array('absolute' => TRUE)),
'url:relative' => url("taxonomy/term/{$parent_term->tid}", array('absolute' => FALSE)),
'url:path' => "taxonomy/term/{$parent_term->tid}",
'url:unaliased:path' => "taxonomy/term/{$parent_term->tid}",
'edit-url' => url("taxonomy/term/{$parent_term->tid}/edit", array('absolute' => TRUE)),
'parents' => 'Root term',
'parents:count' => 1,
'parents:keys' => $root_term->tid,
'root' => check_plain($root_term->name),
'root:tid' => $root_term->tid,
// Deprecated tokens
'url:alias' => "taxonomy/term/{$parent_term->tid}",
);
$this->assertTokens('term', array('term' => $parent_term), $tokens);
$term = $this->addTerm($this->vocab, array('name' => 'Test term', 'parent' => $parent_term->tid));
$tokens = array(
'parents' => 'Root term, Parent term',
'parents:count' => 2,
'parents:keys' => implode(', ', array($root_term->tid, $parent_term->tid)),
);
$this->assertTokens('term', array('term' => $term), $tokens);
}
/**
* Test the additional vocabulary tokens.
*/
function testVocabularyTokens() {
$vocabulary = $this->vocab;
$tokens = array(
'machine-name' => 'tags',
'edit-url' => url("admin/structure/taxonomy/{$vocabulary->machine_name}/edit", array('absolute' => TRUE)),
);
$this->assertTokens('vocabulary', array('vocabulary' => $vocabulary), $tokens);
}
function addVocabulary(array $vocabulary = array()) {
$vocabulary += array(
'name' => drupal_strtolower($this->randomName(5)),
'nodes' => array('article' => 'article'),
);
$vocabulary = (object) $vocabulary;
taxonomy_vocabulary_save($vocabulary);
return $vocabulary;
}
function addTerm(stdClass $vocabulary, array $term = array()) {
$term += array(
'name' => drupal_strtolower($this->randomName(5)),
'vid' => $vocabulary->vid,
);
$term = (object) $term;
taxonomy_term_save($term);
return $term;
}
}
class TokenUserTestCase extends TokenTestHelper {
protected $account = NULL;
public static function getInfo() {
return array(
'name' => 'User token tests',
'description' => 'Test the user tokens.',
'group' => 'Token',
);
}
public function setUp($modules = array()) {
parent::setUp($modules);
// Enable user pictures.
variable_set('user_pictures', 1);
variable_set('user_picture_file_size', '');
// Set up the pictures directory.
$picture_path = file_default_scheme() . '://' . variable_get('user_picture_path', 'pictures');
if (!file_prepare_directory($picture_path, FILE_CREATE_DIRECTORY)) {
$this->fail('Could not create directory ' . $picture_path . '.');
}
$this->account = $this->drupalCreateUser(array('administer users'));
$this->drupalLogin($this->account);
}
function testUserTokens() {
// Add a user picture to the account.
$image = current($this->drupalGetTestFiles('image'));
$edit = array('files[picture_upload]' => drupal_realpath($image->uri));
$this->drupalPost('user/' . $this->account->uid . '/edit', $edit, t('Save'));
// Load actual user data from database.
$this->account = user_load($this->account->uid, TRUE);
$this->assertTrue(!empty($this->account->picture->fid), 'User picture uploaded.');
$user_tokens = array(
'picture' => theme('user_picture', array('account' => $this->account)),
'picture:fid' => $this->account->picture->fid,
'picture:size-raw' => 125,
'ip-address' => NULL,
'roles' => implode(', ', $this->account->roles),
'roles:keys' => implode(', ', array_keys($this->account->roles)),
);
$this->assertTokens('user', array('user' => $this->account), $user_tokens);
$edit = array('user_pictures' => FALSE);
$this->drupalPost('admin/config/people/accounts', $edit, 'Save configuration');
$this->assertText('The configuration options have been saved.');
// Remove the simpletest-created user role.
user_role_delete(end($this->account->roles));
$this->account = user_load($this->account->uid, TRUE);
$user_tokens = array(
'picture' => NULL,
'picture:fid' => NULL,
'ip-address' => NULL,
'roles' => 'authenticated user',
'roles:keys' => (string) DRUPAL_AUTHENTICATED_RID,
);
$this->assertTokens('user', array('user' => $this->account), $user_tokens);
// The ip address token should work for the current user token type.
$tokens = array(
'ip-address' => ip_address(),
);
$this->assertTokens('current-user', array(), $tokens);
$anonymous = drupal_anonymous_user();
// Mess with the role array to ensure we still get consistent output.
$anonymous->roles[DRUPAL_ANONYMOUS_RID] = DRUPAL_ANONYMOUS_RID;
$tokens = array(
'roles' => 'anonymous user',
'roles:keys' => (string) DRUPAL_ANONYMOUS_RID,
);
$this->assertTokens('user', array('user' => $anonymous), $tokens);
}
}
class TokenEntityTestCase extends TokenTestHelper {
public static function getInfo() {
return array(
'name' => 'Entity token tests',
'description' => 'Test the entity tokens.',
'group' => 'Token',
);
}
public function setUp($modules = array()) {
$modules[] = 'taxonomy';
parent::setUp($modules);
// Create the default tags vocabulary.
$vocabulary = (object) array(
'name' => 'Tags',
'machine_name' => 'tags',
);
taxonomy_vocabulary_save($vocabulary);
$this->vocab = $vocabulary;
}
function testEntityMapping() {
$this->assertIdentical(token_get_entity_mapping('token', 'node'), 'node');
$this->assertIdentical(token_get_entity_mapping('token', 'term'), 'taxonomy_term');
$this->assertIdentical(token_get_entity_mapping('token', 'vocabulary'), 'taxonomy_vocabulary');
$this->assertIdentical(token_get_entity_mapping('token', 'invalid'), FALSE);
$this->assertIdentical(token_get_entity_mapping('token', 'invalid', TRUE), 'invalid');
$this->assertIdentical(token_get_entity_mapping('entity', 'node'), 'node');
$this->assertIdentical(token_get_entity_mapping('entity', 'taxonomy_term'), 'term');
$this->assertIdentical(token_get_entity_mapping('entity', 'taxonomy_vocabulary'), 'vocabulary');
$this->assertIdentical(token_get_entity_mapping('entity', 'invalid'), FALSE);
$this->assertIdentical(token_get_entity_mapping('entity', 'invalid', TRUE), 'invalid');
// Test that when we send the mis-matched entity type into token_replace()
// that we still get the tokens replaced.
$vocabulary = taxonomy_vocabulary_machine_name_load('tags');
$term = $this->addTerm($vocabulary);
$this->assertIdentical(token_replace('[vocabulary:name]', array('taxonomy_vocabulary' => $vocabulary)), $vocabulary->name);
$this->assertIdentical(token_replace('[term:name][term:vocabulary:name]', array('taxonomy_term' => $term)), $term->name . $vocabulary->name);
}
function addTerm(stdClass $vocabulary, array $term = array()) {
$term += array(
'name' => drupal_strtolower($this->randomName(5)),
'vid' => $vocabulary->vid,
);
$term = (object) $term;
taxonomy_term_save($term);
return $term;
}
/**
* Test the [entity:original:*] tokens.
*/
function testEntityOriginal() {
$node = $this->drupalCreateNode(array('title' => 'Original title'));
$tokens = array(
'nid' => $node->nid,
'title' => 'Original title',
'original' => NULL,
'original:nid' => NULL,
);
$this->assertTokens('node', array('node' => $node), $tokens);
// Emulate the original entity property that would be available from
// node_save() and change the title for the node.
$node->original = entity_load_unchanged('node', $node->nid);
$node->title = 'New title';
$tokens = array(
'nid' => $node->nid,
'title' => 'New title',
'original' => 'Original title',
'original:nid' => $node->nid,
);
$this->assertTokens('node', array('node' => $node), $tokens);
}
}
/**
* Test the profile tokens.
*/
class TokenProfileTestCase extends TokenTestHelper {
private $account;
public static function getInfo() {
return array(
'name' => 'Profile token tests',
'description' => 'Test the profile tokens.',
'group' => 'Token',
);
}
public function setUp($modules = array()) {
$modules[] = 'profile';
parent::setUp($modules);
$this->account = $this->drupalCreateUser(array('administer users'));
$this->drupalLogin($this->account);
}
/**
* Test the profile tokens.
*/
function testProfileTokens() {
$field_types = _profile_field_types();
foreach (array_keys($field_types) as $field_type) {
$field = array();
switch ($field_type) {
case 'checkbox':
$field['title'] = 'This is a checkbox';
break;
case 'selection':
$field['options'] = implode("\n", array('Red', 'Blue', 'Green'));
break;
}
$this->addProfileField($field_type, $field);
}
// Submit the profile fields for the user.
$edit = array(
'profile_textfield' => 'This is a text field',
'profile_textarea' => "First paragraph.\n\nSecond paragraph.",
'profile_checkbox' => TRUE,
'profile_selection' => 'Red',
'profile_list' => ' Drupal , Joomla ',
'profile_url' => 'http://www.example.com/',
'profile_date[month]' => 5,
'profile_date[day]' => 20,
'profile_date[year]' => 1984,
);
$this->drupalPost("user/{$this->account->uid}/edit/SimpleTest", $edit, 'Save');
$account = user_load($this->account->uid, TRUE);
// Test the profile token values.
$tokens = array(
'profile-textfield' => 'This is a text field',
'profile-textarea' => "<p>First paragraph.</p>\n<p>Second paragraph.</p>\n",
'profile-checkbox' => 'This is a checkbox',
'profile-selection' => 'Red',
'profile-list' => 'Drupal, Joomla',
'profile-url' => 'http://www.example.com/',
'profile-date' => format_date(453859200, 'medium', '', NULL),
'profile-date:raw' => '453859200',
'profile-date:custom:Y' => '1984',
);
$this->assertTokens('user', array('user' => $account), $tokens);
// 'Un-select' the checkbox and select profile fields.
$edit = array(
'profile_checkbox' => FALSE,
'profile_selection' => '0',
);
$this->drupalPost("user/{$this->account->uid}/edit/SimpleTest", $edit, 'Save');
$account = user_load($this->account->uid, TRUE);
// The checkbox and select profile tokens should no longer return a value.
$tokens = array(
'profile-checkbox' => NULL,
'profile-selection' => NULL,
);
$this->assertTokens('user', array('user' => $account), $tokens);
}
/**
* Add a profile field.
*
* @param $type
* The profile field type.
* @param $field
* (optional) An array of the profile field properties.
*
* @return
* The saved profile field record object.
*
* @see drupal_form_submit()
*/
function addProfileField($type, array $field = array()) {
$field += array(
'type' => $type,
'category' => 'SimpleTest',
'title' => $this->randomName(8),
'name' => 'profile_' . $type,
'explanation' => $this->randomName(50),
'autocomplete' => 0,
'required' => 0,
'register' => 0,
);
drupal_write_record('profile_field', $field);
// Verify the profile field was created successfully.
$saved_field = db_query("SELECT * FROM {profile_field} WHERE type = :type AND name = :name", array(':type' => $type, ':name' => $field['name']))->fetchObject();
if (empty($saved_field)) {
$this->fail(t('Failed to create profile field @name.', array('@name' => $saved_field->name)));
}
return $saved_field;
}
}
/**
* Test the current page tokens.
*/
class TokenCurrentPageTestCase extends TokenTestHelper {
public static function getInfo() {
return array(
'name' => 'Current page token tests',
'description' => 'Test the [current-page:*] tokens.',
'group' => 'Token',
);
}
function testCurrentPageTokens() {
$tokens = array(
'[current-page:title]' => t('Welcome to @site-name', array('@site-name' => variable_get('site_name', 'Drupal'))),
'[current-page:url]' => url('node', array('absolute' => TRUE)),
'[current-page:url:absolute]' => url('node', array('absolute' => TRUE)),
'[current-page:url:relative]' => url('node', array('absolute' => FALSE)),
'[current-page:url:path]' => 'node',
'[current-page:url:args:value:0]' => 'node',
'[current-page:url:args:value:1]' => NULL,
'[current-page:url:unaliased]' => url('node', array('absolute' => TRUE, 'alias' => TRUE)),
'[current-page:page-number]' => 1,
'[current-page:query:foo]' => NULL,
'[current-page:query:bar]' => NULL,
'[current-page:query:q]' => 'node',
// Deprecated tokens
'[current-page:arg:0]' => 'node',
'[current-page:arg:1]' => NULL,
);
$this->assertPageTokens('', $tokens);
$node = $this->drupalCreateNode(array('title' => 'Node title', 'path' => array('alias' => 'node-alias')));
$tokens = array(
'[current-page:title]' => 'Node title',
'[current-page:url]' => url("node/{$node->nid}", array('absolute' => TRUE)),
'[current-page:url:absolute]' => url("node/{$node->nid}", array('absolute' => TRUE)),
'[current-page:url:relative]' => url("node/{$node->nid}", array('absolute' => FALSE)),
'[current-page:url:alias]' => 'node-alias',
'[current-page:url:args:value:0]' => 'node-alias',
'[current-page:url:args:value:1]' => NULL,
'[current-page:url:unaliased]' => url("node/{$node->nid}", array('absolute' => TRUE, 'alias' => TRUE)),
'[current-page:url:unaliased:args:value:0]' => 'node',
'[current-page:url:unaliased:args:value:1]' => $node->nid,
'[current-page:url:unaliased:args:value:2]' => NULL,
'[current-page:page-number]' => 1,
'[current-page:query:foo]' => 'bar',
'[current-page:query:bar]' => NULL,
'[current-page:query:q]' => 'node/1',
// Deprecated tokens
'[current-page:arg:0]' => 'node',
'[current-page:arg:1]' => 1,
'[current-page:arg:2]' => NULL,
);
$this->assertPageTokens("node/{$node->nid}", $tokens, array(), array('url_options' => array('query' => array('foo' => 'bar'))));
}
}
class TokenArrayTestCase extends TokenTestHelper {
public static function getInfo() {
return array(
'name' => 'Array token tests',
'description' => 'Test the array tokens.',
'group' => 'Token',
);
}
function testArrayTokens() {
// Test a simple array.
$array = array(0 => 'a', 1 => 'b', 2 => 'c', 4 => 'd');
$tokens = array(
'first' => 'a',
'last' => 'd',
'value:0' => 'a',
'value:2' => 'c',
'count' => 4,
'keys' => '0, 1, 2, 4',
'keys:value:3' => '4',
'keys:join' => '0124',
'reversed' => 'd, c, b, a',
'reversed:keys' => '4, 2, 1, 0',
'join:/' => 'a/b/c/d',
'join' => 'abcd',
'join:, ' => 'a, b, c, d',
'join: ' => 'a b c d',
);
$this->assertTokens('array', array('array' => $array), $tokens);
// Test a mixed simple and render array.
// 2 => c, 0 => a, 4 => d, 1 => b
$array = array(
'#property' => 'value',
0 => 'a',
1 => array('#markup' => 'b', '#weight' => 0.01),
2 => array('#markup' => 'c', '#weight' => -10),
4 => array('#markup' => 'd', '#weight' => 0),
);
$tokens = array(
'first' => 'c',
'last' => 'b',
'value:0' => 'a',
'value:2' => 'c',
'count' => 4,
'keys' => '2, 0, 4, 1',
'keys:value:3' => '1',
'keys:join' => '2041',
'reversed' => 'b, d, a, c',
'reversed:keys' => '1, 4, 0, 2',
'join:/' => 'c/a/d/b',
'join' => 'cadb',
'join:, ' => 'c, a, d, b',
'join: ' => 'c a d b',
);
$this->assertTokens('array', array('array' => $array), $tokens);
}
}
class TokenRandomTestCase extends TokenTestHelper {
public static function getInfo() {
return array(
'name' => 'Random token tests',
'description' => 'Test the random tokens.',
'group' => 'Token',
);
}
function testRandomTokens() {
$tokens = array(
'number' => '[0-9]{1,}',
'hash:md5' => '[0-9a-f]{32}',
'hash:sha1' => '[0-9a-f]{40}',
'hash:sha256' => '[0-9a-f]{64}',
'hash:invalid-algo' => NULL,
);
$first_set = $this->assertTokens('random', array(), $tokens, array('regex' => TRUE));
$second_set = $this->assertTokens('random', array(), $tokens, array('regex' => TRUE));
foreach ($first_set as $token => $value) {
$this->assertNotIdentical($first_set[$token], $second_set[$token]);
}
}
}
/**
* @todo Remove when http://drupal.org/node/1173706 is fixed.
*/
class TokenDateTestCase extends TokenTestHelper {
public static function getInfo() {
return array(
'name' => 'Date token tests',
'description' => 'Test the date tokens.',
'group' => 'Token',
);
}
function testDateTokens() {
$tokens = array(
'token_test' => '1984',
'invalid_format' => NULL,
);
$this->assertTokens('date', array('date' => 453859200), $tokens);
}
}
class TokenFileTestCase extends TokenTestHelper {
public static function getInfo() {
return array(
'name' => 'File token tests',
'description' => 'Test the file tokens.',
'group' => 'Token',
);
}
function testFileTokens() {
// Create a test file object.
$file = new stdClass();
$file->fid = 1;
$file->filename = 'test.png';
$file->filesize = 100;
$file->uri = 'public://images/test.png';
$file->filemime = 'image/png';
$tokens = array(
'basename' => 'test.png',
'extension' => 'png',
'size-raw' => 100,
);
$this->assertTokens('file', array('file' => $file), $tokens);
// Test a file with no extension and a fake name.
$file->filename = 'Test PNG image';
$file->uri = 'public://images/test';
$tokens = array(
'basename' => 'test',
'extension' => '',
'size-raw' => 100,
);
$this->assertTokens('file', array('file' => $file), $tokens);
}
}
class TokenBlockTestCase extends TokenTestHelper {
public static function getInfo() {
return array(
'name' => 'Block token tests',
'description' => 'Test the block title token replacement.',
'group' => 'Token',
);
}
public function setUp($modules = array()) {
$modules[] = 'block';
parent::setUp($modules);
$this->admin_user = $this->drupalCreateUser(array('access content', 'administer blocks'));
$this->drupalLogin($this->admin_user);
}
public function testBlockTitleTokens() {
$edit['title'] = '[user:name]';
$edit['info'] = 'Test token title block';
$edit['body[value]'] = 'This is the test token title block.';
$this->drupalPost('admin/structure/block/add', $edit, 'Save block');
// Ensure token validation is working on the block.
$this->assertText('The Block title is using the following invalid tokens: [user:name].');
// Create the block for real now with a valid title.
$edit['title'] = '[current-page:title] block title';
$edit['regions[bartik]'] = 'sidebar_first';
$this->drupalPost(NULL, $edit, 'Save block');
$this->drupalGet('node');
$this->assertText('Welcome to ' . variable_get('site_name', 'Drupal') . ' block title');
// Ensure that tokens are not double-escaped when output as a block title.
$node = $this->drupalCreateNode(array('title' => "Site's first node"));
$this->drupalGet('node/' . $node->nid);
// The apostraphe should only be escaped once via check_plain().
$this->assertRaw("Site's first node block title");
}
}