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 pathScriptTests.cs
146 lines (139 loc) · 4.85 KB
/
ScriptTests.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
/*
* ====================
* 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 System.Reflection;
using Org.IdentityConnectors.Common.Script;
using Org.IdentityConnectors.Framework.Common.Objects;
using NUnit.Framework;
namespace FrameworkTests
{
/// <summary>
/// Description of ScriptTests.
/// </summary>
[TestFixture]
public class ScriptTests
{
[Test]
public void testBooScripting()
{
ScriptExecutorFactory factory = ScriptExecutorFactory.NewInstance("BOO");
ScriptExecutor exe = factory.NewScriptExecutor(new Assembly[0], "x", false);
IDictionary<string, object> vals = new Dictionary<string, object>();
vals["x"] = 1;
Assert.AreEqual(1, exe.Execute(vals));
vals["x"] = 2;
Assert.AreEqual(2, exe.Execute(vals));
}
[Test]
public void testShellScripting()
{
ScriptExecutorFactory factory = ScriptExecutorFactory.NewInstance("Shell");
ScriptExecutor exe = factory.NewScriptExecutor(new Assembly[0], "echo bob", false);
IDictionary<string, object> vals = new Dictionary<string, object>();
Assert.AreEqual(0, ((IDictionary<string, object>)exe.Execute(vals))["exitCode"]);
}
[Test]
[ExpectedException(typeof(ArgumentException))]
public void testUnsupported()
{
ScriptExecutorFactory.NewInstance("fadsflkj");
}
[Test]
public void testBasic()
{
ScriptBuilder builder = new ScriptBuilder();
builder.ScriptLanguage = "Groovy";
builder.ScriptText = "print 'foo'";
Script s1 = builder.Build();
Assert.AreEqual("Groovy", s1.ScriptLanguage);
Assert.AreEqual("print 'foo'", s1.ScriptText);
builder = new ScriptBuilder();
builder.ScriptLanguage = "Groovy";
builder.ScriptText = "print 'foo'";
Script s2 = builder.Build();
Assert.AreEqual(s1, s2);
Assert.AreEqual(s1.GetHashCode(), s2.GetHashCode());
}
[Test]
public void testLanguageNotBlank()
{
try
{
ScriptBuilder builder = new ScriptBuilder();
builder.ScriptText = "print 'foo'";
builder.Build();
Assert.Fail();
}
catch (ArgumentException)
{
// OK.
}
try
{
ScriptBuilder builder = new ScriptBuilder();
builder.ScriptText = "print 'foo'";
builder.ScriptLanguage = "";
builder.Build();
Assert.Fail();
}
catch (ArgumentException)
{
// OK.
}
try
{
ScriptBuilder builder = new ScriptBuilder();
builder.ScriptText = "print 'foo'";
builder.ScriptLanguage = " ";
builder.Build();
Assert.Fail();
}
catch (ArgumentException)
{
// OK.
}
}
[Test]
public void testTextNotNull()
{
ScriptBuilder builder = new ScriptBuilder();
try
{
builder.ScriptLanguage = "Groovy";
builder.Build();
Assert.Fail();
}
catch (ArgumentNullException)
{
// OK.
}
// The text can be empty.
builder = new ScriptBuilder();
builder.ScriptLanguage = "Groovy";
builder.ScriptText = "";
builder.Build();
}
}
}