This repository was archived by the owner on Jul 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMockConnector.cs
379 lines (328 loc) · 11.8 KB
/
MockConnector.cs
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
/*
* ====================
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright 2008-2009 Sun Microsystems, Inc. All rights reserved.
*
* The contents of this file are subject to the terms of the Common Development
* and Distribution License("CDDL") (the "License"). You may not use this file
* except in compliance with the License.
*
* You can obtain a copy of the License at
* http://opensource.org/licenses/cddl1.php
* See the License for the specific language governing permissions and limitations
* under the License.
*
* When distributing the Covered Code, include this CDDL Header Notice in each file
* and include the License file at http://opensource.org/licenses/cddl1.php.
* If applicable, add the following below this CDDL Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
* ====================
* Portions Copyrighted 2014 ForgeRock AS.
*/
using System;
using System.Collections.Generic;
using NUnit.Framework;
using Org.IdentityConnectors.Common;
using Org.IdentityConnectors.Common.Security;
using Org.IdentityConnectors.Framework.Common.Exceptions;
using Org.IdentityConnectors.Framework.Common.Objects;
using Org.IdentityConnectors.Framework.Common.Objects.Filters;
using Org.IdentityConnectors.Framework.Spi;
using Org.IdentityConnectors.Framework.Spi.Operations;
namespace FrameworkTests
{
public class MockConnector : Connector, SchemaOp
{
/// <summary>
/// Represents a call to a connector method.
/// </summary>
public class Call
{
private readonly string methodName;
private readonly object[] args;
public Call(string methodName, params object[] args)
{
this.methodName = methodName;
this.args = args;
}
public string MethodName
{
get
{
return methodName;
}
}
public object[] Arguments
{
get
{
return this.args;
}
}
}
// need to keep track of when methods are called an their parameters..
private static IList<Call> callPattern = new List<Call>();
private Configuration _config;
public void Dispose()
{
AddCall("Dispose");
}
public Schema Schema()
{
AddCall("Schema");
return null;
}
public void Init(Configuration cfg)
{
_config = cfg;
AddCall("Init", cfg);
}
public Configuration getConfiguration()
{
return _config;
}
/// <summary>
/// Clear the call pattern.
/// </summary>
public static void Reset()
{
callPattern.Clear();
}
/// <summary>
/// Get the current call pattern.
/// </summary>
public static IList<Call> GetCallPattern()
{
return CollectionUtil.NewList(callPattern);
}
/// <summary>
/// Adds the call to the internal call pattern.
/// </summary>
public static void AddCall(string methodName, params object[] args)
{
callPattern.Add(new Call(methodName, args));
}
}
public class MockAllOpsConnector : MockConnector, CreateOp,
DeleteOp, UpdateOp, SearchOp<string>, UpdateAttributeValuesOp, AuthenticateOp,
ResolveUsernameOp, TestOp, ScriptOnConnectorOp, ScriptOnResourceOp, SyncOp
{
public object RunScriptOnConnector(ScriptContext request,
OperationOptions options)
{
Assert.IsNotNull(request);
Assert.IsNotNull(options);
AddCall("RunScriptOnConnector", request, options);
return null;
}
public object RunScriptOnResource(ScriptContext request,
OperationOptions options)
{
Assert.IsNotNull(request);
Assert.IsNotNull(options);
AddCall("RunScriptOnResource", request, options);
return null;
}
public Uid Create(ObjectClass oclass, ICollection<ConnectorAttribute> attrs,
OperationOptions options)
{
Assert.IsNotNull(attrs);
AddCall("Create", attrs);
return null;
}
public void Delete(ObjectClass objClass, Uid uid,
OperationOptions options)
{
Assert.IsNotNull(uid);
Assert.IsNotNull(objClass);
AddCall("Delete", objClass, uid);
}
public Uid Update(ObjectClass objclass, Uid uid, ICollection<ConnectorAttribute> attrs,
OperationOptions options)
{
Assert.IsNotNull(objclass);
Assert.IsNotNull(attrs);
AddCall("Update", objclass, attrs);
return null;
}
public Uid AddAttributeValues(ObjectClass objclass, Uid uid,
ICollection<ConnectorAttribute> valuesToAdd, OperationOptions options)
{
AddCall("AddAttributeValues", objclass, valuesToAdd);
return null;
}
public Uid RemoveAttributeValues(ObjectClass objclass, Uid uid,
ICollection<ConnectorAttribute> valuesToRemove, OperationOptions options)
{
AddCall("RemoveAttributeValues", objclass, valuesToRemove);
return null;
}
public FilterTranslator<string> CreateFilterTranslator(ObjectClass oclass,
OperationOptions options)
{
Assert.IsNotNull(oclass);
Assert.IsNotNull(options);
AddCall("CreateFilterTranslator", oclass, options);
// no translation - ok since this is just for tests
return new MockFilterTranslator();
}
public void ExecuteQuery(ObjectClass oclass, string query,
ResultsHandler handler, OperationOptions options)
{
Assert.IsNotNull(oclass);
Assert.IsNotNull(handler);
Assert.IsNotNull(options);
AddCall("ExecuteQuery", oclass, query, handler, options);
if (null != options.PageSize && options.PageSize > 0)
{
// This is a pages search request
((SearchResultsHandler)handler).HandleResult(new SearchResult("TOKEN==", 100));
}
}
public Uid Authenticate(ObjectClass objectClass, string username, GuardedString password,
OperationOptions options)
{
Assert.IsNotNull(username);
Assert.IsNotNull(password);
AddCall("Authenticate", username, password);
return null;
}
public Uid ResolveUsername(ObjectClass objectClass, string username, OperationOptions options)
{
Assert.IsNotNull(username);
AddCall("ResolveUsername", username);
return null;
}
public void Test()
{
AddCall("Test");
}
public void Sync(ObjectClass objectClass, SyncToken token, SyncResultsHandler handler, OperationOptions options)
{
Assert.IsNotNull(objectClass);
Assert.IsNotNull(token);
Assert.IsNotNull(handler);
Assert.IsNotNull(options);
AddCall("Sync", objectClass, token, handler, options);
if (ObjectClass.ALL.Equals(objectClass))
{
if (null != CollectionUtil.GetValue(options.Options, "FAIL_DELETE", null))
{
//Require ObjectClass when delta is 'delete'
var builder = new SyncDeltaBuilder();
builder.DeltaType = SyncDeltaType.DELETE;
builder.Uid = new Uid("DELETED");
builder.Token = new SyncToken(99);
handler.Handle(builder.Build());
}
else
{
((SyncTokenResultsHandler)handler).HandleResult(new SyncToken(100));
}
}
}
public SyncToken GetLatestSyncToken(ObjectClass objectClass)
{
Assert.IsNotNull(objectClass);
AddCall("GetLatestSyncToken", objectClass);
return new SyncToken(0);
}
}
public class MockUpdateConnector : Connector, UpdateOp, SearchOp<string>
{
private Configuration _cfg;
public void Dispose()
{
// nothing to do this is a mock connector..
}
public void Init(Configuration cfg)
{
_cfg = cfg;
}
public Configuration GetConfiguration()
{
return _cfg;
}
private static IList<ConnectorObject> objects = new List<ConnectorObject>();
static MockUpdateConnector()
{
ConnectorObjectBuilder bld = new ConnectorObjectBuilder();
for (int i = 0; i < 100; i++)
{
bld.SetUid(Convert.ToString(i));
bld.SetName(Convert.ToString(i));
objects.Add(bld.Build());
}
}
/// <summary>
/// This will do a basic replace.
/// </summary>
///
/// <seealso cref="UpdateOp.Update"/>
///
public Uid Update(ObjectClass objclass, Uid uid, ICollection<ConnectorAttribute> attrs, OperationOptions options)
{
string val = ConnectorAttributeUtil.GetAsStringValue(uid);
int idx = Convert.ToInt32(val);
//.Get out the object..
ConnectorObject baseObject = objects[idx];
ConnectorObjectBuilder bld = new ConnectorObjectBuilder();
bld.Add(baseObject);
bld.AddAttributes(attrs);
ConnectorObject obj = bld.Build();
objects[idx] = obj;
return obj.Uid;
}
public FilterTranslator<string> CreateFilterTranslator(ObjectClass oclass, OperationOptions options)
{
//no translation - ok since this is just for tests
return new MockFilterTranslator();
}
/// <summary>
/// Simply return everything don't bother optimizing.
/// </summary>
///
/// <seealso cref="SearchOp.Search"/>
public void ExecuteQuery(ObjectClass oclass, string query, ResultsHandler handler, OperationOptions options)
{
foreach (ConnectorObject obj in objects)
{
if (!handler.Handle(obj))
{
break;
}
}
}
}
class MockFilterTranslator : AbstractFilterTranslator<string>
{
}
public class MockConfiguration : AbstractConfiguration
{
private readonly bool fail;
public MockConfiguration()
{
}
/// <summary>
/// Determines if this configuration will fail validation.
/// </summary>
public MockConfiguration(bool failvalidation)
{
this.fail = failvalidation;
}
public bool Fail
{
get;
set;
}
public override void Validate()
{
if (fail)
{
throw new ConfigurationException();
}
}
}
}