-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathExecuteScript2ActionTests.cs
More file actions
1232 lines (1050 loc) · 42.9 KB
/
ExecuteScript2ActionTests.cs
File metadata and controls
1232 lines (1050 loc) · 42.9 KB
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
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Lime.Protocol;
using Lime.Protocol.Serialization;
using Microsoft.ClearScript;
using Newtonsoft.Json.Linq;
using NSubstitute;
using Serilog;
using Shouldly;
using Take.Blip.Builder.Actions;
using Take.Blip.Builder.Actions.ExecuteScriptV2;
using Take.Blip.Builder.Hosting;
using Take.Blip.Builder.Utils;
using Take.Blip.Client;
using Xunit;
namespace Take.Blip.Builder.UnitTests.Actions
{
public class ExecuteScript2ActionTests : ActionTestsBase
{
private static ExecuteScriptV2Action GetTarget(IHttpClient client = null,
ISender sender = null, IEnvelopeSerializer envelopeSerializer = null)
{
var configuration = new TestConfiguration();
var conventions = new ConventionsConfiguration();
configuration.ExecuteScriptV2Timeout = TimeSpan.FromMilliseconds(300);
configuration.ExecuteScriptV2MaxRuntimeHeapSize =
conventions.ExecuteScriptV2MaxRuntimeHeapSize;
configuration.ExecuteScriptV2MaxRuntimeStackUsage =
conventions.ExecuteScriptV2MaxRuntimeStackUsage;
return new ExecuteScriptV2Action(configuration, client ?? Substitute.For<IHttpClient>(),
Substitute.For<ILogger>(), sender ?? Substitute.For<ISender>(),
envelopeSerializer ?? Substitute.For<IEnvelopeSerializer>());
}
[Fact]
public async Task ExecuteWithSingleStatementScriptShouldSucceed()
{
// Arrange
const string variableName = "variable1";
const string variableValue = "my variable 1 value";
var settings = new ExecuteScriptV2Settings
{
Source = $"function run() {{ return '{variableValue}'; }}",
OutputVariable = variableName
};
var target = GetTarget();
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync(variableName, variableValue,
CancellationToken);
await Context.Received(0).DeleteVariableAsync(variableName, CancellationToken);
}
[Fact]
public async Task ExecuteScriptParseIntWithManyChars()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
Source = @"
function run() {
let numberTest = new Array(100000).join('Z');
let convert = parseInt(numberTest);
return convert;
}
",
OutputVariable = "test"
};
var target = GetTarget();
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync("test", "NaN", CancellationToken);
}
[Fact]
public async Task ExecuteScriptWithLiteralRegularExpression()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
Source = @"
const matchEmailRegex = (input) => {
const pattern = /^[\w-.]+@([\w-]+\.)+[\w-]{2,4}$/gmi;
return input.match(pattern, 'gmi');
}
function run() {
return matchEmailRegex('test@blip.ai');
}
",
OutputVariable = "test"
};
var target = GetTarget();
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync("test", "[\"test@blip.ai\"]", CancellationToken);
}
[Fact]
public async Task ExecuteWithCustomTimeZoneDateStringAndTimeStringShouldWork()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
// Fixed date to test timezone
Source =
"function run() { return time.parseDate('2021-01-01T00:00:10').toDateString() + ' ' + time.parseDate('2021-01-01T00:00:10').toTimeString(); }",
OutputVariable = "test",
LocalTimeZoneEnabled = true
};
var target = GetTarget();
Context.Flow.Configuration["builder:#localTimeZone"] = "Asia/Shanghai";
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
// The result should contain the timezone offset and time, but the day/month names may vary by locale
await Context.Received(1).SetVariableAsync(
Arg.Is<string>(s => s == "test"),
Arg.Is<string>(s => s.Contains("2021 11:00:10 GMT+08:00")),
CancellationToken);
}
[Fact]
public async Task ExecuteWithCustomTimeZoneDateStringAndTimeStringWithAmericaShouldWork()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
// Fixed date to test timezone
Source =
"function run() { return time.parseDate('2021-01-01T00:00:10').toDateString() + ' ' + time.parseDate('2021-01-01T00:00:10').toTimeString(); }",
OutputVariable = "test",
LocalTimeZoneEnabled = true
};
var target = GetTarget();
Context.Flow.Configuration["builder:#localTimeZone"] = "America/Sao_Paulo";
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
// Jint doesn't support toLocaleString, so it will return the default date format
await Context.Received(1).SetVariableAsync("test",
"sex. jan. 01 2021 00:00:10 GMT-03:00", CancellationToken);
}
[Fact]
public async Task ExecuteWithCustomTimeZoneStringMethodsShouldBeTheSame()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
// Fixed date to test timezone
Source = @"
function run() {
var parsedDate = time.parseDate('2021-01-01T00:00:10');
return (parsedDate.toDateString() + ' ' + parsedDate.toTimeString()) == parsedDate.toString();
}",
OutputVariable = "test",
LocalTimeZoneEnabled = true
};
var target = GetTarget();
Context.Flow.Configuration["builder:#localTimeZone"] = "Asia/Shanghai";
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
// Jint doesn't support toLocaleString, so it will return the default date format
await Context.Received(1).SetVariableAsync("test", "true", CancellationToken);
}
[Fact]
public async Task ExecuteThrowExceptionTest()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
Source = $"function run() {{ throw new Error('Test error'); }}",
OutputVariable = "variable1",
CaptureExceptions = true,
ExceptionVariable = "exception"
};
var target = GetTarget();
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync("exception", "Error: Test error",
CancellationToken);
}
[Fact]
public async Task ExecuteWithArgumentsShouldSucceed()
{
// Arrange
const string number1 = "100";
const string number2 = "250";
Context.GetVariableAsync(nameof(number1), CancellationToken).Returns(number1);
Context.GetVariableAsync(nameof(number2), CancellationToken).Returns(number2);
var settings = new ExecuteScriptV2Settings
{
InputVariables = new[] { nameof(number1), nameof(number2) },
Source = @"
function run(number1, number2) {
return parseInt(number1) + parseInt(number2);
}",
OutputVariable = "result"
};
var target = GetTarget();
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync(Arg.Any<string>(), Arg.Any<string>(),
CancellationToken, Arg.Any<TimeSpan>());
await Context.Received(1).SetVariableAsync("result", "350", CancellationToken);
}
[Fact]
public async Task ExecuteSetContextVariableShouldSucceed()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
Source = @"
async function run() {
await context.setVariableAsync('test', 100);
return true;
}",
OutputVariable = "result"
};
var target = GetTarget();
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync("test", "100", Arg.Any<CancellationToken>());
await Context.Received(1)
.SetVariableAsync("result", "true", Arg.Any<CancellationToken>());
}
[Fact]
public async Task ExecuteMultipleAsyncResults()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
Source = @"
async function testNum() {
return 1;
}
async function testStr() {
return 'bla';
}
async function testRecursiveAsync() {
return await testStr();
}
async function run() {
return {
'num': testNum(),
'str': testStr(),
'recursive': testRecursiveAsync()
};
}",
OutputVariable = "result"
};
var target = GetTarget();
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync("result",
"{\"num\":1,\"str\":\"bla\",\"recursive\":\"bla\"}", Arg.Any<CancellationToken>());
}
[Fact]
public async Task ExecuteWithMissingArgumentsShouldSucceed()
{
// Arrange
const string number1 = "100";
const string number2 = "250";
Context.GetVariableAsync(nameof(number1), CancellationToken).Returns(number1);
Context.GetVariableAsync(nameof(number2), CancellationToken).Returns(number2);
var settings = new ExecuteScriptV2Settings
{
InputVariables = new[] { nameof(number1), nameof(number2) },
Source = @"
function run(number1, number2, number3) {
return parseInt(number1) + parseInt(number2) + (number3 || 150);
}",
OutputVariable = "result"
};
var target = GetTarget();
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync(Arg.Any<string>(), Arg.Any<string>(),
CancellationToken, Arg.Any<TimeSpan>());
await Context.Received(1).SetVariableAsync("result", "500", CancellationToken);
}
[Fact]
public async Task ExecuteUsingLetAndConstVariablesShouldHaveScopeAndSucceed()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
InputVariables = Array.Empty<string>(),
Source = @"
function scopedFunc() {
let x = 1;
const y = 'my value';
return { x: x, y: y };
}
function run() {
var scopedReturn = scopedFunc();
return typeof x === 'undefined' && typeof y === 'undefined' && scopedReturn.x === 1 && scopedReturn.y === 'my value';
}",
OutputVariable = "result"
};
var target = GetTarget();
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync("result", "true", CancellationToken);
}
[Fact]
public async Task ExecuteWithCustomFunctionNameAndArgumentsShouldSucceed()
{
// Arrange
const string number1 = "100";
const string number2 = "250";
Context.GetVariableAsync(nameof(number1), CancellationToken).Returns(number1);
Context.GetVariableAsync(nameof(number2), CancellationToken).Returns(number2);
var settings = new ExecuteScriptV2Settings
{
Function = "executeFunc",
InputVariables = new[] { nameof(number1), nameof(number2) },
Source = @"
function executeFunc(number1, number2) {
return parseInt(number1) + parseInt(number2);
}",
OutputVariable = "result"
};
var target = GetTarget();
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync(Arg.Any<string>(), Arg.Any<string>(),
CancellationToken, Arg.Any<TimeSpan>());
await Context.Received(1).SetVariableAsync("result", "350", CancellationToken);
}
[Fact]
public async Task ExecuteWithJsonReturnValueShouldSucceed()
{
// Arrange
var result =
"{\"id\":1,\"valid\":true,\"options\":[1,2,3],\"names\":[\"a\",\"b\",\"c\"],\"others\":[{\"a\":\"value1\"},{\"b\":\"value2\"}],\"content\":{\"uri\":\"https://server.com/image.jpeg\",\"type\":\"image/jpeg\"}}";
var settings = new ExecuteScriptV2Settings
{
Source = @"
function run() {
return {
id: 1,
valid: true,
options: [ 1, 2, 3 ],
names: [ 'a', 'b', 'c' ],
others: [{ a: 'value1' }, { b: 'value2' }],
content: {
uri: 'https://server.com/image.jpeg',
type: 'image/jpeg'
}
};
}
",
OutputVariable = "result"
};
var target = GetTarget();
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync(Arg.Any<string>(), Arg.Any<string>(),
CancellationToken, Arg.Any<TimeSpan>());
await Context.Received(1).SetVariableAsync("result", result, CancellationToken);
}
[Fact]
public async Task ExecuteWithArrayReturnValueShouldSucceed()
{
// Arrange
const string result = "[1,2,3]";
var settings = new ExecuteScriptV2Settings
{
Source = @"
function run() {
return [1, 2, 3];
}
",
OutputVariable = "result"
};
var target = GetTarget();
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync(Arg.Any<string>(), Arg.Any<string>(),
CancellationToken, Arg.Any<TimeSpan>());
await Context.Received(1).SetVariableAsync("result", result, CancellationToken);
}
[Fact]
public async Task ExecuteWithWhileTrueShouldFail()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
Source = @"
function run() {
var value = 0;
while (true) {
value++;
}
return value;
}",
OutputVariable = "result"
};
var target = GetTarget();
// Act
try
{
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
throw new Exception("The script was executed");
}
catch (TimeoutException ex)
{
ex.Message.ShouldBe("Script execution timed out");
}
}
[Fact]
public async Task ExecuteWithDefaultTimeZoneShouldWork()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
// Test date parsing and also converting to specific format and timezone
Source =
"function run() { return time.parseDate('2021-01-01T00:00:00Z', {format:'yyyy-MM-ddTHH:mm:ssZ'}).toLocaleString('pt-BR', { timeZone: 'America/Sao_Paulo' }); }",
OutputVariable = "test"
};
var target = GetTarget();
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1)
.SetVariableAsync("test", "31/12/2020, 21:00:00", CancellationToken);
}
[Fact]
public async Task ExecuteParseDateOverloads()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
// Test date parsing and also converting to specific format and timezone
Source =
@"
function run() {
return {
'parseDate': time.parseDate('2021-01-01T19:01:01.0000001+08:00'),
'parseDateWithFormat': time.parseDate('01/02/2021', {format:'MM/dd/yyyy'}),
'parseDateWithFormatAndCulture': time.parseDate('01/01/2021', {format: 'MM/dd/yyyy', culture: 'pt-BR'}),
}
}",
OutputVariable = "test"
};
var target = GetTarget();
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1)
.SetVariableAsync("test",
"{\"parseDate\":\"2021-01-01T08:01:01.0000000-03:00\",\"parseDateWithFormat\":\"2021-01-02T00:00:00.0000000-03:00\",\"parseDateWithFormatAndCulture\":\"2021-01-01T00:00:00.0000000-03:00\"}",
CancellationToken);
}
[Fact]
public async Task ExecuteWithCustomTimeZoneShouldWork()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
// Test date parsing from GMT, with bot on Asia/Shanghai (+8 from GMT) and then converting to SP (-3 from GMT)
Source =
"function run() { return time.parseDate('2021-01-01T00:00:00Z', {format:'yyyy-MM-ddTHH:mm:ssZ'}).toLocaleString('en-US', { timeZone: 'America/Sao_Paulo' }); }",
OutputVariable = "test",
LocalTimeZoneEnabled = true
};
var target = GetTarget();
Context.Flow.Configuration["builder:#localTimeZone"] = "Asia/Shanghai";
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync("test", "12/31/2020, 9:00:00 PM",
CancellationToken);
}
[Fact]
public async Task ExecuteWithArrowFunctionOnRun()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
Source =
@"
anArrowFunction = () => {
return 'foo';
}
async function run() {
return anArrowFunction();
}
",
OutputVariable = "test",
LocalTimeZoneEnabled = true
};
var target = GetTarget();
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync("test", "foo", CancellationToken);
}
[Fact]
public async Task ExecuteWithArrowFunctionEntrypointShouldWork()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
Source =
@"
run = async () => {
return 'foo';
}
",
OutputVariable = "test",
LocalTimeZoneEnabled = true
};
var target = GetTarget();
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync("test", "foo", CancellationToken);
}
[Fact]
public async Task ExecuteDateToStringWithCustomTimeZoneShouldWork()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
// Test date parsing and also converting to specific format and timezone
Source =
"function run() { return time.dateToString(time.parseDate('2021-01-01T00:00:00Z', {'format':'yyyy-MM-ddTHH:mm:ssZ'})); }",
OutputVariable = "test",
LocalTimeZoneEnabled = true
};
var target = GetTarget();
Context.Flow.Configuration["builder:#localTimeZone"] = "Asia/Shanghai";
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync("test", "2021-01-01T08:00:00.0000000+08:00",
CancellationToken);
}
[Fact]
public async Task ExecuteParseDateWithDefaultFormat()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
// Test date parsing and also converting to specific format and timezone
Source =
@"
function run() {
var parsed = time.parseDate('2021-01-01T19:00:00.0000000');
var stringDate = time.dateToString(parsed);
return {
'parsed': parsed,
'stringDate': stringDate
}
}",
OutputVariable = "test",
LocalTimeZoneEnabled = true
};
var target = GetTarget();
Context.Flow.Configuration["builder:#localTimeZone"] = "America/Sao_Paulo";
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync("test",
"{\"parsed\":\"2021-01-01T19:00:00.0000000-03:00\",\"stringDate\":\"2021-01-01T19:00:00.0000000-03:00\"}",
CancellationToken);
}
[Fact]
public async Task ExecuteWithInfiniteSleepShouldFail()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
Source = @"
function run() {
time.sleep(1000000000);
return value;
}",
OutputVariable = "result"
};
var target = GetTarget();
// Act
try
{
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
throw new Exception("The script was executed");
}
catch (TimeoutException ex)
{
ex.Message.ShouldBe("Script execution timed out");
}
catch (ScriptEngineException ex)
{
ex.Message.ShouldBe("Error: Script execution timed out");
}
}
[Fact]
public async Task ExecuteScripWithXmlHttpRequestShouldFail()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
Source = @"
function run() {
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if (xhr.readyState == XMLHttpRequest.DONE) {
alert(xhr.responseText);
}
}
xhr.open('GET', 'https://example.com', true);
xhr.send(null);
}",
OutputVariable = "result"
};
var target = GetTarget();
// Act
try
{
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
throw new Exception("The script was executed");
}
catch (ScriptEngineException ex)
{
ex.Message.ShouldContain("XMLHttpRequest is not defined");
}
}
[Fact]
[SuppressMessage("Performance", "CA1861:Avoid constant arrays as arguments")]
public async Task ExecuteScriptWithFetchRequestShouldSucceed()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
Source = @"
async function run() {
var response = await request.fetchAsync('https://mock.com', {
'method': 'POST',
'body': 'r8eht438thj9848',
'headers': {
'Content-Type': 'application/text',
'test': 'test2',
'test2': ['bla', 'bla2']
}
});
return response;
}",
OutputVariable = "result"
};
using var response = new HttpResponseMessage();
response.StatusCode = HttpStatusCode.OK;
response.Content = new StringContent("{\"result\": \"bla\"}");
response.Headers.Add("test", "test2");
response.Headers.Add("test2", new[] { "bla", "bla2" });
var httpClient = Substitute.For<IHttpClient>();
HttpRequestMessage resultMessage = null;
httpClient.SendAsync(Arg.Do<HttpRequestMessage>(message =>
{
resultMessage = new HttpRequestMessage
{
Method = message.Method,
RequestUri = message.RequestUri,
Content = new StringContent(message.Content!.ReadAsStringAsync()
.GetAwaiter()
.GetResult(), Encoding.UTF8,
message.Content.Headers.ContentType?.MediaType!)
};
for (var i = 0; i < message.Headers.Count(); i++)
{
var header = message.Headers.ElementAt(i);
resultMessage.Headers.TryAddWithoutValidation(header.Key, header.Value);
}
}), Arg.Any<CancellationToken>())
.Returns(response);
var target = GetTarget(httpClient);
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync("result",
"{\"status\":200,\"success\":true,\"body\":\"{\\\"result\\\": \\\"bla\\\"}\",\"headers\":{\"test\":[\"test2\"],\"test2\":[\"bla\",\"bla2\"]}}",
CancellationToken);
resultMessage.Method.ShouldBe(HttpMethod.Post);
resultMessage.RequestUri.ShouldBe(new Uri("https://mock.com"));
var requestBody = await resultMessage.Content!.ReadAsStringAsync();
requestBody.ShouldBe("r8eht438thj9848");
resultMessage.Headers.GetValues("test").First().ShouldBe("test2");
resultMessage.Headers.GetValues("test2").ShouldBe(new[] { "bla", "bla2" });
resultMessage.Content.Headers.ContentType!.MediaType.ShouldBe("application/text");
}
[Fact]
[SuppressMessage("Performance", "CA1861:Avoid constant arrays as arguments")]
public async Task ExecuteScriptWithFormUrlEncodedContentTypeShouldSucceed()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
Source = @"
async function run() {
var response = await request.fetchAsync('https://mock.com', {
'method': 'POST',
'body': 'key1=value1&key2=value2',
'headers': {
'Content-Type': 'application/x-www-form-urlencoded'
}
});
return response;
}",
OutputVariable = "result"
};
using var response = new HttpResponseMessage();
response.StatusCode = HttpStatusCode.OK;
response.Content = new StringContent("{\"result\": \"form-response\"}");
var httpClient = Substitute.For<IHttpClient>();
HttpRequestMessage resultMessage = null;
httpClient.SendAsync(Arg.Do<HttpRequestMessage>(message =>
{
resultMessage = new HttpRequestMessage
{
Method = message.Method,
RequestUri = message.RequestUri,
Content = new ByteArrayContent(Encoding.UTF8.GetBytes(message.Content!.ReadAsStringAsync()
.GetAwaiter()
.GetResult()))
};
foreach (var header in message.Headers)
{
resultMessage.Headers.TryAddWithoutValidation(header.Key, header.Value);
}
resultMessage.Content.Headers.ContentType = new System.Net.Http.Headers.MediaTypeHeaderValue("application/x-www-form-urlencoded");
}), Arg.Any<CancellationToken>())
.Returns(response);
var target = GetTarget(httpClient);
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync("result",
Arg.Is<string>(s => s.Contains("\"status\":200") &&
s.Contains("\"success\":true") &&
s.Contains("\"body\":\"{\\\"result\\\": \\\"form-response\\\"}\"")),
CancellationToken);
resultMessage.ShouldNotBeNull();
resultMessage.Method.ShouldBe(HttpMethod.Post);
resultMessage.RequestUri.ShouldBe(new Uri("https://mock.com"));
var requestBody = await resultMessage.Content!.ReadAsStringAsync();
requestBody.ShouldBe("key1=value1&key2=value2");
resultMessage.Content.Headers.ContentType!.ToString().ShouldContain("application/x-www-form-urlencoded");
resultMessage.Content.Headers.ContentType!.ToString().ShouldNotContain("charset=utf-8");
resultMessage.Content.ShouldBeOfType<ByteArrayContent>();
}
[Fact]
[SuppressMessage("Performance", "CA1861:Avoid constant arrays as arguments")]
public async Task ExecuteScriptWithRequestParseJsonResponse()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
Source = @"
async function run() {
var response = await request.fetchAsync('https://mock.com', {
'method': 'POST',
'body': 'r8eht438thj9848',
'headers': {
'Content-Type': 'application/text',
'test': 'test2',
'test2': ['bla', 'bla2']
}
});
return await response.jsonAsync();
}",
OutputVariable = "result"
};
using var response = new HttpResponseMessage();
response.StatusCode = HttpStatusCode.OK;
response.Content =
new StringContent("{\"result\": \"bla\"}", Encoding.UTF8, "application/json");
response.Headers.Add("test", "test2");
response.Headers.Add("test2", new[] { "bla", "bla2" });
var httpClient = Substitute.For<IHttpClient>();
httpClient.SendAsync(Arg.Any<HttpRequestMessage>(), Arg.Any<CancellationToken>())
.Returns(response);
var target = GetTarget(httpClient);
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync("result",
"{\"result\":\"bla\"}",
CancellationToken);
}
[Fact]
[SuppressMessage("Performance", "CA1861:Avoid constant arrays as arguments")]
public async Task ExecuteScriptWithFetchRequestWithoutOptionsShouldSucceed()
{
// Arrange
var settings = new ExecuteScriptV2Settings
{
Source = @"
async function run() {
var response = await request.fetchAsync('https://mock.com');
return response;
}",
OutputVariable = "result"
};
using var response = new HttpResponseMessage();
response.StatusCode = HttpStatusCode.OK;
response.Content = new StringContent("{\"result\": \"bla\"}");
response.Headers.Add("test", "test2");
response.Headers.Add("test2", new[] { "bla", "bla2" });
var httpClient = Substitute.For<IHttpClient>();
HttpRequestMessage resultMessage = null;
httpClient.SendAsync(Arg.Do<HttpRequestMessage>(message =>
{
resultMessage = new HttpRequestMessage
{
Method = message.Method,
RequestUri = message.RequestUri,
Content = message.Content,
};
for (var i = 0; i < message.Headers.Count(); i++)
{
var header = message.Headers.ElementAt(i);
resultMessage.Headers.TryAddWithoutValidation(header.Key, header.Value);
}
}), Arg.Any<CancellationToken>())
.Returns(response);
var target = GetTarget(httpClient);
// Act
await target.ExecuteAsync(Context, JObject.FromObject(settings), CancellationToken);
// Assert
await Context.Received(1).SetVariableAsync("result",
"{\"status\":200,\"success\":true,\"body\":\"{\\\"result\\\": \\\"bla\\\"}\",\"headers\":{\"test\":[\"test2\"],\"test2\":[\"bla\",\"bla2\"]}}",
CancellationToken);
resultMessage.Method.ShouldBe(HttpMethod.Get);
resultMessage.RequestUri.ShouldBe(new Uri("https://mock.com"));
resultMessage.Content.ShouldBeNull();
}
[Fact]