summaryrefslogtreecommitdiff
path: root/ext/ldap/tests/ldap_mod_ext.phpt
blob: 0ca091fed8c676607cfcd29ecfc24449913f66ce (plain)
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
--TEST--
ldap_mod_ext() - Modify operations with controls
--CREDITS--
Patrick Allaert <patrickallaert@php.net>
# Belgian PHP Testfest 2009
--SKIPIF--
<?php require_once('skipif.inc'); ?>
<?php require_once('skipifbindfailure.inc'); ?>
<?php
require_once('skipifcontrol.inc');
skipifunsupportedcontrol(LDAP_CONTROL_PRE_READ);
skipifunsupportedcontrol(LDAP_CONTROL_POST_READ);
?>
--FILE--
<?php
require "connect.inc";

$link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
insert_dummy_data($link, $base);

$entry = array(
    "description"	=> "Domain description",
);

var_dump(
    $result = ldap_mod_add_ext($link, "o=test,$base", $entry,
        [
            ['oid' => LDAP_CONTROL_PRE_READ,  'iscritical' => TRUE, 'value' => ['attrs' => ['description']]],
            ['oid' => LDAP_CONTROL_POST_READ, 'iscritical' => TRUE, 'value' => ['attrs' => ['description']]],
        ]
    ),
    ldap_parse_result($link, $result, $errcode, $matcheddn, $errmsg, $referrals, $ctrls),
    $errcode,
    $errmsg,
    $ctrls,
    ldap_get_entries(
        $link,
        ldap_search($link, "o=test,$base", "(Description=Domain description)")
    ),
    $result = ldap_mod_del_ext($link, "o=test,$base", $entry,
        [
            ['oid' => LDAP_CONTROL_PRE_READ,  'iscritical' => TRUE, 'value' => ['attrs' => ['description']]],
            ['oid' => LDAP_CONTROL_POST_READ, 'iscritical' => TRUE, 'value' => ['attrs' => ['description']]],
        ]
    ),
    ldap_parse_result($link, $result, $errcode, $matcheddn, $errmsg, $referrals, $ctrls),
    $errcode,
    $errmsg,
    $ctrls,
    ldap_get_entries(
        $link,
        ldap_search($link, "o=test,$base", "(Description=Domain description)")
    )
);
?>
--CLEAN--
<?php
require "connect.inc";

$link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);

remove_dummy_data($link, $base);
?>
--EXPECTF--
resource(%d) of type (ldap result)
bool(true)
int(0)
string(0) ""
array(2) {
  ["1.3.6.1.1.13.1"]=>
  array(2) {
    ["oid"]=>
    string(14) "1.3.6.1.1.13.1"
    ["value"]=>
    array(1) {
      ["dn"]=>
      string(%d) "o=test,%s"
    }
  }
  ["1.3.6.1.1.13.2"]=>
  array(2) {
    ["oid"]=>
    string(14) "1.3.6.1.1.13.2"
    ["value"]=>
    array(2) {
      ["dn"]=>
      string(%d) "o=test,%s"
      ["description"]=>
      array(1) {
        [0]=>
        string(18) "Domain description"
      }
    }
  }
}
array(2) {
  ["count"]=>
  int(1)
  [0]=>
  array(8) {
    ["objectclass"]=>
    array(3) {
      ["count"]=>
      int(2)
      [0]=>
      string(3) "top"
      [1]=>
      string(12) "organization"
    }
    [0]=>
    string(11) "objectclass"
    ["o"]=>
    array(2) {
      ["count"]=>
      int(1)
      [0]=>
      string(4) "test"
    }
    [1]=>
    string(1) "o"
    ["description"]=>
    array(2) {
      ["count"]=>
      int(1)
      [0]=>
      string(18) "Domain description"
    }
    [2]=>
    string(11) "description"
    ["count"]=>
    int(3)
    ["dn"]=>
    string(%d) "o=test,%s"
  }
}
resource(%d) of type (ldap result)
bool(true)
int(0)
string(0) ""
array(2) {
  ["1.3.6.1.1.13.1"]=>
  array(2) {
    ["oid"]=>
    string(14) "1.3.6.1.1.13.1"
    ["value"]=>
    array(2) {
      ["dn"]=>
      string(%d) "o=test,%s"
      ["description"]=>
      array(1) {
        [0]=>
        string(18) "Domain description"
      }
    }
  }
  ["1.3.6.1.1.13.2"]=>
  array(2) {
    ["oid"]=>
    string(14) "1.3.6.1.1.13.2"
    ["value"]=>
    array(1) {
      ["dn"]=>
      string(%d) "o=test,%s"
    }
  }
}
array(1) {
  ["count"]=>
  int(0)
}