This repository was archived by the owner on Nov 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_ldif.rb
1882 lines (1669 loc) · 50.5 KB
/
test_ldif.rb
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
# -*- coding: utf-8 -*-
require 'al-test-utils'
class TestLDIF < Test::Unit::TestCase
include ActiveLdap::GetTextSupport
include AlTestUtils::Assertions
include AlTestUtils::Config
include AlTestUtils::ExampleFile
priority :must
def test_accept_empty_lines_after_content
ldif_source = <<-EOL
version: 1
dn: dc=devel,dc=example,dc=com
dc: devel
objectClass: top
objectClass: dcObject
objectClass: organization
o: devel
EOL
expected_ldif_to_s = <<-EOL
version: 1
dn: dc=devel,dc=example,dc=com
dc: devel
o: devel
objectClass: dcObject
objectClass: organization
objectClass: top
EOL
assert_ldif_to_s(expected_ldif_to_s, ldif_source)
assert_ldif_to_s(expected_ldif_to_s, ldif_source + "\n")
assert_ldif_to_s(expected_ldif_to_s, ldif_source + "\n\n")
assert_ldif_to_s(expected_ldif_to_s, ldif_source + ("\n" * 10))
end
def test_accept_comments_after_content
ldif_source = <<-EOL
version: 1
dn: dc=devel,dc=example,dc=com
dc: devel
objectClass: top
objectClass: dcObject
objectClass: organization
o: devel
# search result
# numResponse: 1
# numEntries: 1
EOL
assert_ldif_to_s(<<-EOL, ldif_source)
version: 1
dn: dc=devel,dc=example,dc=com
dc: devel
o: devel
objectClass: dcObject
objectClass: organization
objectClass: top
EOL
end
priority :normal
def test_comments_and_empty_lines_before_content
ldif_source = <<-EOL
version: 1
#
# LDAPv3
# base <dc=devel,dc=clear-code,dc=com> with scope subtree
# filter: (objectclass=*)
# requesting: ALL
#
# devel.example.com
dn: dc=devel,dc=example,dc=com
dc: devel
objectClass: top
objectClass: dcObject
objectClass: organization
o: devel
EOL
assert_ldif_to_s(<<-EOL, ldif_source)
version: 1
dn: dc=devel,dc=example,dc=com
dc: devel
o: devel
objectClass: dcObject
objectClass: organization
objectClass: top
EOL
end
def test_unknown_change_type
ldif_source = <<-EOL
version: 1
dn: ou=Product Development, dc=airius, dc=com
changetype: XXX
EOL
ldif_source_with_error_mark = <<-EOL
changetype: |@|XXX
EOL
assert_invalid_ldif(["unknown change type: %s", "XXX"],
ldif_source, 3, 13, ldif_source_with_error_mark)
end
def test_unknown_modify_type
ldif_source = <<-EOL
version: 1
dn: ou=Product Development, dc=airius, dc=com
changetype: modify
XXX: postaladdress
-
EOL
ldif_source_with_error_mark = <<-EOL
|@|XXX: postaladdress
EOL
assert_invalid_ldif(["unknown modify type: %s", "XXX"],
ldif_source, 4, 1, ldif_source_with_error_mark)
end
def test_modify_spec_block_separator_is_missing
ldif_source = <<-EOL
version: 1
dn: ou=Product Development, dc=airius, dc=com
changetype: modify
add: postaladdress
EOL
ldif_source_with_error_mark = <<-EOL.chomp
add: postaladdress
|@|
EOL
assert_invalid_ldif("'-' is missing",
ldif_source, 5, 1, ldif_source_with_error_mark)
end
def test_modify_spec_first_line_separator_is_missing
ldif_source = <<-EOL.chomp
version: 1
dn: ou=Product Development, dc=airius, dc=com
changetype: modify
add: postaladdress
EOL
ldif_source_with_error_mark = <<-EOL.chomp
add: postaladdress|@|
EOL
assert_invalid_ldif("separator is missing",
ldif_source, 4, 19, ldif_source_with_error_mark)
end
def test_modify_target_attribute_name_is_missing
ldif_source = <<-EOL
version: 1
dn: ou=Product Development, dc=airius, dc=com
changetype: modify
add:
-
EOL
ldif_source_with_error_mark = <<-EOL
add:|@|
EOL
assert_invalid_ldif("attribute type is missing",
ldif_source, 4, 5, ldif_source_with_error_mark)
end
def test_newsuperior_separator_is_missing
ldif_source = <<-EOL.chomp
version: 1
dn: ou=Product Development, dc=airius, dc=com
changetype: moddn
newrdn: cn=Paula Jensen
deleteoldrdn: 1
newsuperior: ou=Accounting, dc=airius, dc=com
EOL
ldif_source_with_error_mark = <<-EOL.chomp
newsuperior: ou=Accounting, dc=airius, dc=com|@|
EOL
assert_invalid_ldif("separator is missing",
ldif_source, 6, 46, ldif_source_with_error_mark)
end
def test_newsuperior_value_is_missing
ldif_source = <<-EOL
version: 1
dn: ou=Product Development, dc=airius, dc=com
changetype: moddn
newrdn: cn=Paula Jensen
deleteoldrdn: 1
newsuperior:
EOL
ldif_source_with_error_mark = <<-EOL
newsuperior:|@|
EOL
assert_invalid_ldif("new superior value is missing",
ldif_source, 6, 13, ldif_source_with_error_mark)
end
def test_deleteoldrdn_separator_is_missing
ldif_source = <<-EOL.chomp
version: 1
dn: ou=Product Development, dc=airius, dc=com
changetype: moddn
newrdn: cn=Paula Jensen
deleteoldrdn: 1
EOL
ldif_source_with_error_mark = <<-EOL.chomp
deleteoldrdn: 1|@|
EOL
assert_invalid_ldif("separator is missing",
ldif_source, 5, 16, ldif_source_with_error_mark)
end
def test_invalid_deleteoldrdn_value
ldif_source = <<-EOL
version: 1
dn: ou=Product Development, dc=airius, dc=com
changetype: moddn
newrdn: cn=Paula Jensen
deleteoldrdn: x
EOL
ldif_source_with_error_mark = <<-EOL
deleteoldrdn: |@|x
EOL
assert_invalid_ldif("delete old RDN value is missing",
ldif_source, 5, 15, ldif_source_with_error_mark)
end
def test_deleteoldrdn_value_is_missing
ldif_source = <<-EOL
version: 1
dn: ou=Product Development, dc=airius, dc=com
changetype: moddn
newrdn: cn=Paula Jensen
deleteoldrdn:
EOL
ldif_source_with_error_mark = <<-EOL
deleteoldrdn:|@|
EOL
assert_invalid_ldif("delete old RDN value is missing",
ldif_source, 5, 14, ldif_source_with_error_mark)
end
def test_deleteoldrdn_mark_is_missing
ldif_source = <<-EOL
version: 1
dn: ou=Product Development, dc=airius, dc=com
changetype: moddn
newrdn: cn=Paula Jensen
EOL
ldif_source_with_error_mark = <<-EOL.chomp
newrdn: cn=Paula Jensen
|@|
EOL
assert_invalid_ldif("'deleteoldrdn:' is missing",
ldif_source, 5, 1, ldif_source_with_error_mark)
end
def test_newrdn_separator_is_missing
ldif_source = <<-EOL.chomp
version: 1
dn: ou=Product Development, dc=airius, dc=com
changetype: moddn
newrdn: cn=Paula Jensen
EOL
ldif_source_with_error_mark = <<-EOL.chomp
newrdn: cn=Paula Jensen|@|
EOL
assert_invalid_ldif("separator is missing",
ldif_source, 4, 24, ldif_source_with_error_mark)
end
def test_newrdn_value_is_missing
ldif_source = <<-EOL
version: 1
dn: ou=Product Development, dc=airius, dc=com
changetype: moddn
newrdn:
EOL
ldif_source_with_error_mark = <<-EOL
newrdn:|@|
EOL
assert_invalid_ldif("new RDN value is missing",
ldif_source, 4, 8, ldif_source_with_error_mark)
end
def test_newrdn_mark_is_missing
ldif_source = <<-EOL
version: 1
dn: ou=Product Development, dc=airius, dc=com
changetype: moddn
EOL
ldif_source_with_error_mark = <<-EOL.chomp
changetype: moddn
|@|
EOL
assert_invalid_ldif("'newrdn:' is missing",
ldif_source, 4, 1, ldif_source_with_error_mark)
end
def test_add_change_type_without_attribute
ldif_source = <<-EOL
version: 1
dn: ou=Product Development, dc=airius, dc=com
changetype: add
EOL
ldif_source_with_error_mark = <<-EOL.chomp
changetype: add
|@|
EOL
assert_invalid_ldif("attribute spec is missing",
ldif_source, 4, 1, ldif_source_with_error_mark)
end
def test_change_type_with_an_extra_space
ldif_source = <<-EOL
version: 1
dn: ou=Product Development, dc=airius, dc=com
changetype: delete
EOL
ldif_source_with_error_mark = <<-EOL
changetype: delete|@|
EOL
assert_invalid_ldif("separator is missing",
ldif_source, 3, 19, ldif_source_with_error_mark)
end
def test_change_type_separator_is_missing
ldif_source = <<-EOL.chomp
version: 1
dn: ou=Product Development, dc=airius, dc=com
changetype: delete
EOL
ldif_source_with_error_mark = <<-EOL.chomp
changetype: delete|@|
EOL
assert_invalid_ldif("separator is missing",
ldif_source, 3, 19, ldif_source_with_error_mark)
end
def test_change_type_value_is_missing
ldif_source = <<-EOL
version: 1
dn: ou=Product Development, dc=airius, dc=com
changetype:
EOL
ldif_source_with_error_mark = <<-EOL
changetype:|@|
EOL
assert_invalid_ldif("change type value is missing",
ldif_source, 3, 12, ldif_source_with_error_mark)
end
def test_control_separator_is_missing
ldif_source = <<-EOL.chomp
version: 1
dn: ou=Product Development, dc=airius, dc=com
control: 1.2.840.113556.1.4.805 true
EOL
ldif_source_with_error_mark = <<-EOL.chomp
control: 1.2.840.113556.1.4.805 true|@|
EOL
assert_invalid_ldif("separator is missing",
ldif_source, 3, 37, ldif_source_with_error_mark)
end
def test_criticality_is_missing
ldif_source = <<-EOL
version: 1
dn: ou=Product Development, dc=airius, dc=com
control: 1.2.840.113556.1.4.805
EOL
ldif_source_with_error_mark = <<-EOL
control: 1.2.840.113556.1.4.805 |@|
EOL
assert_invalid_ldif("criticality is missing",
ldif_source, 3, 33, ldif_source_with_error_mark)
end
def test_control_type_is_missing
ldif_source = <<-EOL
version: 1
dn: ou=Product Development, dc=airius, dc=com
control:
EOL
ldif_source_with_error_mark = <<-EOL
control:|@|
EOL
assert_invalid_ldif("control type is missing",
ldif_source, 3, 9, ldif_source_with_error_mark)
end
def test_change_type_is_missing
ldif_source = <<-EOL
version: 1
dn: ou=Product Development, dc=airius, dc=com
control: 1.2.840.113556.1.4.805 true
EOL
ldif_source_with_error_mark = <<-EOL.chomp
control: 1.2.840.113556.1.4.805 true
|@|
EOL
assert_invalid_ldif("change type is missing",
ldif_source, 4, 1, ldif_source_with_error_mark)
end
def test_invalid_dn
ldif_source = <<-EOL
version: 1
dn: ou=o=Airius
EOL
ldif_source_with_error_mark = <<-EOL
dn: ou=o=Airius|@|
EOL
assert_invalid_ldif(["DN is invalid: %s: %s",
"ou=o=Airius", "attribute type is missing"],
ldif_source, 2, 16, ldif_source_with_error_mark)
end
def test_invalid_dn_value
ldif_source = <<-EOL
version: 1
# dn:: ou=<JapaneseOU>,o=Airius
dn: ou=営業部,o=Airius
EOL
ldif_source_with_error_mark = <<-EOL
dn: ou=|@|営業部,o=Airius
EOL
assert_invalid_ldif(["DN has an invalid character: %s", "営"],
ldif_source, 3, 8, ldif_source_with_error_mark)
end
def test_multi_records_without_separator
ldif_source = <<-EOL
version: 1
dn: ou=Product Development, dc=airius, dc=com
changetype: delete
dn: cn=Fiona Jensen, ou=Marketing, dc=airius, dc=com
seealso:
description::
EOL
ldif_source_with_error_mark = <<-EOL
|@|dn: cn=Fiona Jensen, ou=Marketing, dc=airius, dc=com
EOL
assert_invalid_ldif("separator is missing", ldif_source,
4, 1, ldif_source_with_error_mark)
end
def test_to_s_with_blank_value
ldif_source = <<-EOL
version: 1
dn: ou=Product Development,dc=airius,dc=com
seealso:
description::
EOL
assert_ldif_to_s(<<-EOL, ldif_source)
version: 1
dn: ou=Product Development,dc=airius,dc=com
description:
seealso:
EOL
end
def test_to_s_with_last_space
ldif_source = <<-EOL
version: 1
# 'ou=Product Development,dc=airius,dc=com '
dn:: b3U9UHJvZHVjdCBEZXZlbG9wbWVudCwgZGM9YWlyaXVzLCBkYz1jb20g
# 'ou=Product Development,dc=airius,dc=com '
description:: b3U9UHJvZHVjdCBEZXZlbG9wbWVudCwgZGM9YWlyaXVzLCBkYz1jb20g
EOL
assert_ldif_to_s(<<-EOL, ldif_source)
version: 1
dn: ou=Product Development,dc=airius,dc="com "
description:: b3U9UHJvZHVjdCBEZXZlbG9wbWVudCwgZGM9YWlyaXVzLCBkYz1jb20g
EOL
end
def test_change_record_with_control
ldif_source = <<-EOL
version: 1
# Delete an entry. The operation will attach the LDAPv3
# Tree Delete Control defined in [9]. The criticality
# field is "true" and the controlValue field is
# absent, as required by [9].
dn: ou=Product Development, dc=airius, dc=com
control: 1.2.840.113556.1.4.805 true
changetype: delete
EOL
change_attributes = {
"dn" => "ou=Product Development,dc=airius,dc=com",
}
ldif = assert_ldif(1, [change_attributes], ldif_source)
record = ldif.records[0]
assert_equal("delete", record.change_type)
assert_true(record.delete?)
assert_equal([{
:type => "1.2.840.113556.1.4.805",
:criticality => true,
:value => nil
}],
record.controls.collect {|control| control.to_hash})
control = record.controls[0]
assert_equal("1.2.840.113556.1.4.805", control.type)
assert_true(control.criticality?)
assert_nil(control.value)
end
def test_change_record_with_control_to_s
ldif_source = <<-EOL
version: 1
# Delete an entry. The operation will attach the LDAPv3
# Tree Delete Control defined in [9]. The criticality
# field is "true" and the controlValue field is
# absent, as required by [9].
dn: ou=Product Development, dc=airius, dc=com
control: 1.2.840.113556.1.4.805 true
changetype: delete
EOL
assert_ldif_to_s(<<-EOL, ldif_source)
version: 1
dn: ou=Product Development,dc=airius,dc=com
control: 1.2.840.113556.1.4.805 true
changetype: delete
EOL
end
def test_multi_change_type_records
ldif_source = <<-EOL
version: 1
# Add a new entry
dn: cn=Fiona Jensen, ou=Marketing, dc=airius, dc=com
changetype: add
objectclass: top
objectclass: person
objectclass: organizationalPerson
cn: Fiona Jensen
sn: Jensen
uid: fiona
telephonenumber: +1 408 555 1212
# Delete an existing entry
dn: cn=Robert Jensen, ou=Marketing, dc=airius, dc=com
changetype: delete
# Modify an entry's relative distinguished name
dn: cn=Paul Jensen, ou=Product Development, dc=airius, dc=com
changetype: modrdn
newrdn: cn=Paula Jensen
deleteoldrdn: 1
# Rename an entry and move all of its children to a new location in
# the directory tree (only implemented by LDAPv3 servers).
dn: ou=PD Accountants, ou=Product Development, dc=airius, dc=com
changetype: modrdn
newrdn: ou=Product Development Accountants
deleteoldrdn: 0
newsuperior: ou=Accounting, dc=airius, dc=com
# Modify an entry: add an additional value to the postaladdress
# attribute, completely delete the description attribute, replace
# the telephonenumber attribute with two values, and delete a specific
# value from the facsimiletelephonenumber attribute
dn: cn=Paula Jensen, ou=Product Development, dc=airius, dc=com
changetype: modify
add: postaladdress
postaladdress: 123 Anystreet $ Sunnyvale, CA $ 94086
-
delete: description
-
replace: telephonenumber
telephonenumber: +1 408 555 1234
telephonenumber: +1 408 555 5678
-
delete: facsimiletelephonenumber
facsimiletelephonenumber: +1 408 555 9876
-
# Modify an entry: replace the postaladdress attribute with an empty
# set of values (which will cause the attribute to be removed), and
# delete the entire description attribute. Note that the first will
# always succeed, while the second will only succeed if at least
# one value for the description attribute is present.
dn: cn=Ingrid Jensen, ou=Product Support, dc=airius, dc=com
changetype: modify
replace: postaladdress
-
delete: description
-
EOL
assert_ldif_to_s(<<-EOL, ldif_source)
version: 1
dn: cn=Fiona Jensen,ou=Marketing,dc=airius,dc=com
changetype: add
cn: Fiona Jensen
objectclass: organizationalPerson
objectclass: person
objectclass: top
sn: Jensen
telephonenumber: +1 408 555 1212
uid: fiona
dn: cn=Robert Jensen,ou=Marketing,dc=airius,dc=com
changetype: delete
dn: cn=Paul Jensen,ou=Product Development,dc=airius,dc=com
changetype: modrdn
newrdn: cn=Paula Jensen
deleteoldrdn: 1
dn: ou=PD Accountants,ou=Product Development,dc=airius,dc=com
changetype: modrdn
newrdn: ou=Product Development Accountants
deleteoldrdn: 0
newsuperior: ou=Accounting,dc=airius,dc=com
dn: cn=Paula Jensen,ou=Product Development,dc=airius,dc=com
changetype: modify
add: postaladdress
postaladdress: 123 Anystreet $ Sunnyvale, CA $ 94086
-
delete: description
-
replace: telephonenumber
telephonenumber: +1 408 555 1234
telephonenumber: +1 408 555 5678
-
delete: facsimiletelephonenumber
facsimiletelephonenumber: +1 408 555 9876
-
dn: cn=Ingrid Jensen,ou=Product Support,dc=airius,dc=com
changetype: modify
replace: postaladdress
-
delete: description
-
EOL
change_attributes_add = {
"dn" => "cn=Fiona Jensen,ou=Marketing,dc=airius,dc=com",
"objectclass" => ["top", "person", "organizationalPerson"],
"cn" => ["Fiona Jensen"],
"sn" => ["Jensen"],
"uid" => ["fiona"],
"telephonenumber" => ["+1 408 555 1212"],
}
change_attributes_delete = {
"dn" => "cn=Robert Jensen,ou=Marketing,dc=airius,dc=com",
}
change_attributes_modrdn = {
"dn" => "cn=Paul Jensen,ou=Product Development,dc=airius,dc=com",
}
change_attributes_modrdn_with_new_superior = {
"dn" => "ou=PD Accountants,ou=Product Development,dc=airius,dc=com",
}
change_attributes_modify = {
"dn" => "cn=Paula Jensen,ou=Product Development,dc=airius,dc=com",
}
change_attributes_modify_with_empty_replace = {
"dn" => "cn=Ingrid Jensen,ou=Product Support,dc=airius,dc=com",
}
ldif = assert_ldif(1,
[change_attributes_add,
change_attributes_delete,
change_attributes_modrdn,
change_attributes_modrdn_with_new_superior,
change_attributes_modify,
change_attributes_modify_with_empty_replace],
ldif_source)
record = ldif.records[0]
assert_equal("add", record.change_type)
assert_true(record.add?)
record = ldif.records[1]
assert_equal("delete", record.change_type)
assert_true(record.delete?)
record = ldif.records[2]
assert_equal("modrdn", record.change_type)
assert_true(record.modify_rdn?)
assert_equal("cn=Paula Jensen", record.new_rdn)
assert_true(record.delete_old_rdn?)
assert_nil(record.new_superior)
record = ldif.records[3]
assert_equal("modrdn", record.change_type)
assert_true(record.modify_rdn?)
assert_equal("ou=Product Development Accountants", record.new_rdn)
assert_false(record.delete_old_rdn?)
assert_equal("ou=Accounting,dc=airius,dc=com", record.new_superior)
record = ldif.records[4]
assert_equal("modify", record.change_type)
assert_true(record.modify?)
operations = [
["add", "postaladdress",
{"postaladdress" =>
["123 Anystreet $ Sunnyvale, CA $ 94086"]}],
["delete", "description", {}],
["replace", "telephonenumber",
{"telephonenumber" => [
"+1 408 555 1234",
"+1 408 555 5678",
]}],
["delete", "facsimiletelephonenumber",
{"facsimiletelephonenumber" => ["+1 408 555 9876"]}],
]
i = -1
actual = record.operations.collect do |operation|
i += 1
type = operations[i][0]
[operation.send("#{type}?"),
[operation.type, operation.attribute, operation.attributes]]
end
assert_equal(operations.collect {|operation| [true, operation]},
actual)
record = ldif.records[5]
assert_equal("modify", record.change_type)
assert_true(record.modify?)
operations = [
["replace", "postaladdress", {}],
["delete", "description", {}],
]
i = -1
actual = record.operations.collect do |operation|
i += 1
type = operations[i][0]
[operation.send("#{type}?"),
[operation.type, operation.attribute, operation.attributes]]
end
assert_equal(operations.collect {|operation| [true, operation]},
actual)
end
def test_modify_record
ldif_source = <<-EOL
version: 1
# Modify an entry: add an additional value to the postaladdress
# attribute, completely delete the description attribute, replace
# the telephonenumber attribute with two values, and delete a specific
# value from the facsimiletelephonenumber attribute
dn: cn=Paula Jensen, ou=Product Development, dc=airius, dc=com
changetype: modify
add: postaladdress
postaladdress: 123 Anystreet $ Sunnyvale, CA $ 94086
-
delete: description
-
replace: telephonenumber
telephonenumber: +1 408 555 1234
telephonenumber: +1 408 555 5678
-
delete: facsimiletelephonenumber
facsimiletelephonenumber: +1 408 555 9876
-
EOL
change_attributes = {
"dn" => "cn=Paula Jensen,ou=Product Development,dc=airius,dc=com",
}
ldif = assert_ldif(1, [change_attributes], ldif_source)
record = ldif.records[0]
assert_equal("modify", record.change_type)
assert_true(record.modify?)
operations = [
["add", "postaladdress",
{"postaladdress" =>
["123 Anystreet $ Sunnyvale, CA $ 94086"]}],
["delete", "description", {}],
["replace", "telephonenumber",
{"telephonenumber" => [
"+1 408 555 1234",
"+1 408 555 5678",
]}],
["delete", "facsimiletelephonenumber",
{"facsimiletelephonenumber" => ["+1 408 555 9876"]}],
]
i = -1
actual = record.operations.collect do |operation|
i += 1
type = operations[i][0]
[operation.send("#{type}?"),
[operation.type, operation.attribute, operation.attributes]]
end
assert_equal(operations.collect {|operation| [true, operation]},
actual)
end
def test_modify_record_to_s
ldif_source = <<-EOL
version: 1
# Modify an entry: add an additional value to the postaladdress
# attribute, completely delete the description attribute, replace
# the telephonenumber attribute with two values, and delete a specific
# value from the facsimiletelephonenumber attribute
dn: cn=Paula Jensen, ou=Product Development, dc=airius, dc=com
changetype: modify
add: postaladdress
postaladdress: 123 Anystreet $ Sunnyvale, CA $ 94086
-
delete: description
-
replace: telephonenumber
telephonenumber: +1 408 555 1234
telephonenumber: +1 408 555 5678
-
delete: facsimiletelephonenumber
facsimiletelephonenumber: +1 408 555 9876
-
EOL
assert_ldif_to_s(<<-EOL, ldif_source)
version: 1
dn: cn=Paula Jensen,ou=Product Development,dc=airius,dc=com
changetype: modify
add: postaladdress
postaladdress: 123 Anystreet $ Sunnyvale, CA $ 94086
-
delete: description
-
replace: telephonenumber
telephonenumber: +1 408 555 1234
telephonenumber: +1 408 555 5678
-
delete: facsimiletelephonenumber
facsimiletelephonenumber: +1 408 555 9876
-
EOL
end
def test_modrdn_record_with_newsuperior
ldif_source = <<-EOL
version: 1
# Rename an entry and move all of its children to a new location in
# the directory tree (only implemented by LDAPv3 servers).
dn: ou=PD Accountants, ou=Product Development, dc=airius, dc=com
changetype: modrdn
newrdn: ou=Product Development Accountants
deleteoldrdn: 0
newsuperior: ou=Accounting, dc=airius, dc=com
EOL
change_attributes = {
"dn" => "ou=PD Accountants,ou=Product Development,dc=airius,dc=com",
}
ldif = assert_ldif(1, [change_attributes], ldif_source)
record = ldif.records[0]
assert_equal("modrdn", record.change_type)
assert_true(record.modify_rdn?)
assert_equal("ou=Product Development Accountants", record.new_rdn)
assert_false(record.delete_old_rdn?)
assert_equal("ou=Accounting,dc=airius,dc=com", record.new_superior)
end
def test_modrdn_record_with_newsuperior_to_s
ldif_source = <<-EOL
version: 1
# Rename an entry and move all of its children to a new location in
# the directory tree (only implemented by LDAPv3 servers).
dn: ou=PD Accountants, ou=Product Development, dc=airius, dc=com
changetype: modrdn
newrdn: ou=Product Development Accountants
deleteoldrdn: 0
newsuperior: ou=Accounting, dc=airius, dc=com
EOL
assert_ldif_to_s(<<-EOL, ldif_source)
version: 1
dn: ou=PD Accountants,ou=Product Development,dc=airius,dc=com
changetype: modrdn
newrdn: ou=Product Development Accountants
deleteoldrdn: 0
newsuperior: ou=Accounting,dc=airius,dc=com
EOL
end
def test_modrdn_record
ldif_source = <<-EOL
version: 1
# Modify an entry's relative distinguished name
dn: cn=Paul Jensen, ou=Product Development, dc=airius, dc=com
changetype: modrdn
newrdn: cn=Paula Jensen
deleteoldrdn: 1
EOL
change_attributes = {
"dn" => "cn=Paul Jensen,ou=Product Development,dc=airius,dc=com",
}
ldif = assert_ldif(1, [change_attributes], ldif_source)
record = ldif.records[0]
assert_equal("modrdn", record.change_type)
assert_true(record.modify_rdn?)
assert_equal("cn=Paula Jensen", record.new_rdn)
assert_true(record.delete_old_rdn?)
assert_nil(record.new_superior)
end
def test_modrdn_record_to_s
ldif_source = <<-EOL
version: 1
# Modify an entry's relative distinguished name
dn: cn=Paul Jensen, ou=Product Development, dc=airius, dc=com
changetype: modrdn
newrdn: cn=Paula Jensen
deleteoldrdn: 1
EOL
assert_ldif_to_s(<<-EOL, ldif_source)
version: 1
dn: cn=Paul Jensen,ou=Product Development,dc=airius,dc=com
changetype: modrdn
newrdn: cn=Paula Jensen
deleteoldrdn: 1
EOL
end
def test_moddn_record_with_newsuperior
ldif_source = <<-EOL
version: 1
# Rename an entry and move all of its children to a new location in
# the directory tree (only implemented by LDAPv3 servers).
dn: ou=PD Accountants, ou=Product Development, dc=airius, dc=com
changetype: moddn
newrdn: ou=Product Development Accountants
deleteoldrdn: 0