File: script.cpp

package info (click to toggle)
antimony 0.9.3-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,480 kB
  • sloc: cpp: 42,596; ansic: 28,661; python: 1,093; yacc: 128; lex: 114; sh: 90; makefile: 10
file content (314 lines) | stat: -rw-r--r-- 7,875 bytes parent folder | download | duplicates (3)
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
#include <Python.h>

#include <catch/catch.hpp>

#include "graph/graph.h"
#include "graph/script_node.h"
#include "graph/datum.h"
#include "graph/proxy.h"

TEST_CASE("Script evaluation")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);
    n->setScript("print('hi there!')");
    CAPTURE(n->getError());
    REQUIRE(n->getErrorLine() == -1);
    delete g;
}

TEST_CASE("Invalid script")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);
    n->setScript("wargarble");
    CAPTURE(n->getError());
    REQUIRE(n->getErrorLine() == 1);
    delete g;
}

TEST_CASE("Script with import")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);
    n->setScript("import os");
    CAPTURE(n->getError());
    REQUIRE(n->getErrorLine() == -1);
    delete g;
}

TEST_CASE("Import namespace")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);
    n->setScript("import os\n"
                 "def f():\n"
                 "    print(os.name)\n"
                 "f()");
    CAPTURE(n->getError());
    REQUIRE(n->getErrorLine() == -1);
    delete g;
}


TEST_CASE("Script input")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);
    n->setScript("input('x', float)");
    CAPTURE(n->getError());
    REQUIRE(n->getErrorLine() == -1);

    auto x = n->getDatum("x");
    REQUIRE(x != nullptr);
    REQUIRE(x->isValid() == true);
    REQUIRE(x->currentValue() != nullptr);
    REQUIRE(PyFloat_AsDouble(x->currentValue()) == 0.0);
    delete g;
}

TEST_CASE("Script input with default argument")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);
    n->setScript("input('x', float, 3.0)");
    CAPTURE(n->getError());
    REQUIRE(n->getErrorLine() == -1);

    auto x = n->getDatum("x");
    REQUIRE(x != nullptr);
    REQUIRE(x->isValid() == true);
    REQUIRE(x->currentValue() != nullptr);
    REQUIRE(PyFloat_AsDouble(x->currentValue()) == 3.0);
    delete g;
}

TEST_CASE("Inter-script datum lookup")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);
    n->setScript("input('x', float, 3.0)\n"
                 "print(x)");
    CAPTURE(n->getError());
    REQUIRE(n->getErrorLine() == -1);
    delete g;
}

TEST_CASE("Datum pinning")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);

    n->setScript("input('x', float, 1.0)");
    auto x = n->getDatum("x");

    n->setScript("input('x', float, 2.0)");
    CAPTURE(n->getError());
    REQUIRE(n->getErrorLine() == -1);
    REQUIRE(n->getDatum("x") == x);
    REQUIRE(x->isValid() == true);
    REQUIRE(x->currentValue() != nullptr);
    REQUIRE(PyFloat_AsDouble(x->currentValue()) == 1.0);
    delete g;
}

TEST_CASE("Datum preservation")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);

    n->setScript("input('x', float, 1.0)");
    auto x = n->getDatum("x");
    REQUIRE(x != nullptr);

    n->setScript("input('x', float, 1.0)wargarble");
    auto x_ = n->getDatum("x");
    REQUIRE(x_ == x);

    delete g;
}

TEST_CASE("Script re-evaluation on datum change")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);
    n->setScript("input('x', float)\n"
                 "raise RuntimeError(str(x))");
    n->getDatum("x")->setText("2.0");

    CAPTURE(n->getError());
    REQUIRE(n->getErrorLine() == 2);
    REQUIRE(n->getError().find("RuntimeError: 2.0") != std::string::npos);
    delete g;
}

TEST_CASE("Script re-evaluation on linked datum change")
{
    auto g = new Graph();
    auto a = new ScriptNode("a", g);
    auto ax = new Datum("x", "3.0", &PyFloat_Type, a);

    auto b = new ScriptNode("b", g);
    b->setScript("input('x', float, 1.0)\n"
                 "output('y', x)");
    b->getDatum("x")->setText("a.x");
    CAPTURE(b->getError());
    REQUIRE(b->getErrorLine() == -1);

    auto y = b->getDatum("y");
    REQUIRE(y->isValid() == true);
    REQUIRE(y->currentValue() != nullptr);
    REQUIRE(PyFloat_AsDouble(y->currentValue()) == 3.0);
    delete g;
}

TEST_CASE("Script output")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);
    n->setScript("output('x', 1.0)\n");

    CAPTURE(n->getError());
    REQUIRE(n->getErrorLine() == -1);

    auto x = n->getDatum("x");
    REQUIRE(x != nullptr);
    REQUIRE(x->isValid() == true);
    REQUIRE(x->currentValue() != nullptr);
    REQUIRE(PyFloat_AsDouble(x->currentValue()) == 1.0);
    delete g;
}

TEST_CASE("Script input pruning")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);
    n->setScript("input('x', float, 1.0)");

    CAPTURE(n->getScript());
    REQUIRE(n->getScript() == "input('x', float)");
    delete g;
}

TEST_CASE("Removing datum from script")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);
    n->setScript("input('x', float, 1.0)");
    REQUIRE(n->getDatum("x") != nullptr);

    n->setScript("");
    REQUIRE(n->getDatum("x") == nullptr);
    delete g;
}

TEST_CASE("Many datums")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);
    n->setScript("input('x', float)\n"
                 "input('y', float)\n"
                 "input('z', float)");
    REQUIRE(n->getErrorLine() == -1);
    delete g;
}

TEST_CASE("Datum removal triggering update")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);
    n->setScript("input('x', float, 1.0)\n"
                 "input('y', float)");

    auto y = n->getDatum("y");
    y->setText("n.x");
    REQUIRE(y->isValid() == true);

    n->setScript("input('y', float)");
    REQUIRE(y != nullptr);
    REQUIRE(y->isValid() == false);
    CAPTURE(y->getError());
    REQUIRE(y->getError().find("Name 'x' is not defined")
            != std::string::npos);
    delete g;
}

TEST_CASE("Invalid datum names")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);

    SECTION("Keyword")
    {
        n->setScript("input('for', float, 1.0)");
        REQUIRE(n->getErrorLine() == 1);
        CAPTURE(n->getError());
        REQUIRE(n->getError().find("Datum name is a reserved Python keyword")
                != std::string::npos);
    }

    SECTION("Double underscore")
    {
        n->setScript("input('__x', float, 1.0)");
        REQUIRE(n->getErrorLine() == 1);
        CAPTURE(n->getError());
        REQUIRE(n->getError().find("Datum name cannot begin with '__'")
                != std::string::npos);
    }

    SECTION("Repeated initialization")
    {
        n->setScript("input('x', float, 1.0)\n"
                     "input('x', int, 2)\n");
        REQUIRE(n->getErrorLine() == 2);
        CAPTURE(n->getError());
        REQUIRE(n->getError().find("Datum was already defined in this script.")
                != std::string::npos);
    }
}

TEST_CASE("Variable namespaces")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);
    n->setScript("input('x', float, 1.0)\n"
                  "def f(g):\n"
                  "    return g + x\n"
                  "print(f(10))");
    CAPTURE(n->getError());
    REQUIRE(n->getErrorLine() == -1);
}

TEST_CASE("Preserving datums in invalid script")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);
    auto d = new Datum("d", 2, "1.0", &PyFloat_Type, n);
    n->setScript("aargh");
    n->setScript("input('d', float)");
    REQUIRE(n->getDatum("d") == d);

    delete g;
}

TEST_CASE("Output with invalid repr")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);
    n->setScript("output('x', float)");
    CAPTURE(n->getError());
    REQUIRE(n->getError().find("Could not evaluate __repr__ of output")
            != std::string::npos);
    REQUIRE(n->getErrorLine() == 1);

    delete g;
}

TEST_CASE("Recursive loops in script output")
{
    auto g = new Graph();
    auto n = new ScriptNode("n", g);
    n->setScript("input('x', float)\n"
                 "output('y', x*1.1)");
    REQUIRE(!n->getDatum("x")->acceptsLink(n->getDatum("y")));
}