-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathintegration.test.ts
More file actions
928 lines (782 loc) · 32.7 KB
/
integration.test.ts
File metadata and controls
928 lines (782 loc) · 32.7 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
/**
* Integration Tests for azure-deploy
*
* Tests skill behavior with a real Copilot agent session.
* Runs prompts multiple times to measure skill invocation rate.
*
* Prerequisites:
* 1. npm install -g @github/copilot-cli
* 2. Run `copilot` and authenticate
*/
import {
shouldSkipIntegrationTests,
getIntegrationSkipReason,
useAgentRunner
} from "../utils/agent-runner";
import { hasDeployLinks, softCheckDeploySkills, softCheckContainerDeployEnvVars } from "./utils";
import { cloneRepo } from "../utils/git-clone";
import { expectFiles, softCheckSkill } from "../utils/evaluate";
const SKILL_NAME = "azure-deploy";
const RUNS_PER_PROMPT = 1;
const ASPIRE_SAMPLES_REPO = "https://github.com/dotnet/aspire-samples.git";
// Check if integration tests should be skipped at module level
const skipTests = shouldSkipIntegrationTests();
const skipReason = getIntegrationSkipReason();
// Log skip reason if skipping
if (skipTests && skipReason) {
console.log(`⏭️ Skipping integration tests: ${skipReason}`);
}
const describeIntegration = skipTests ? describe.skip : describe;
const deployTestTimeoutMs = 1800000;
const brownfieldTestTimeoutMs = 2700000;
describeIntegration(`${SKILL_NAME}_ - Integration Tests`, () => {
const agent = useAgentRunner();
describe("skill-invocation", () => {
const followUp = ["Go with recommended options."];
test("invokes azure-deploy skill for deployment prompt", async () => {
for (let i = 0; i < RUNS_PER_PROMPT; i++) {
try {
const agentMetadata = await agent.run({
prompt: "Run azd up to deploy my already-prepared app to Azure",
nonInteractive: true,
followUp,
});
softCheckSkill(agentMetadata, SKILL_NAME);
} catch (e: unknown) {
if (e instanceof Error && e.message?.includes("Failed to load @github/copilot-sdk")) {
console.log("⏭️ SDK not loadable, skipping test");
return;
}
throw e;
}
}
});
test("invokes azure-deploy skill for publish to Azure prompt", async () => {
for (let i = 0; i < RUNS_PER_PROMPT; i++) {
try {
const agentMetadata = await agent.run({
prompt: "My app already has azure.yaml and infra/ configured. Publish it to Azure now.",
nonInteractive: true,
followUp,
});
softCheckSkill(agentMetadata, SKILL_NAME);
} catch (e: unknown) {
if (e instanceof Error && e.message?.includes("Failed to load @github/copilot-sdk")) {
console.log("⏭️ SDK not loadable, skipping test");
return;
}
throw e;
}
}
});
test("invokes azure-deploy skill for Azure Functions deployment prompt", async () => {
for (let i = 0; i < RUNS_PER_PROMPT; i++) {
try {
const agentMetadata = await agent.run({
prompt: "Deploy my existing Azure Functions project to the cloud. The infrastructure and azure.yaml are already set up.",
nonInteractive: true,
followUp,
});
softCheckSkill(agentMetadata, SKILL_NAME);
} catch (e: unknown) {
if (e instanceof Error && e.message?.includes("Failed to load @github/copilot-sdk")) {
console.log("⏭️ SDK not loadable, skipping test");
return;
}
throw e;
}
}
});
});
// Need to be logged into azd for these tests.
// azd auth login
const FOLLOW_UP_PROMPT = ["Go with recommended options and proceed with Azure deployment."];
// Static Web Apps (SWA)
describe("static-web-apps-deploy", () => {
test("creates whiteboard application", async () => {
let workspacePath: string | undefined;
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
workspacePath = workspace;
},
prompt: "Create a static whiteboard web app and deploy to Azure using my current subscription in eastus2 region.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
preserveWorkspace: true
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(workspacePath).toBeDefined();
expect(containsDeployLinks).toBe(true);
expectFiles(workspacePath!, [/infra\/.*\.bicep$/], [/\.tf$/]);
}, deployTestTimeoutMs);
test("creates static portfolio website", async () => {
let workspacePath: string | undefined;
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
workspacePath = workspace;
},
prompt: "Create a static portfolio website and deploy to Azure using my current subscription in eastus2 region.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
preserveWorkspace: true
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(workspacePath).toBeDefined();
expect(containsDeployLinks).toBe(true);
expectFiles(workspacePath!, [/infra\/.*\.bicep$/], [/\.tf$/]);
}, deployTestTimeoutMs);
});
// App Service
describe("app-service-deploy", () => {
test("creates discussion board", async () => {
let workspacePath: string | undefined;
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
workspacePath = workspace;
},
prompt: "Create a discussion board application and deploy to Azure App Service using my current subscription in eastus2 region.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
preserveWorkspace: true
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(workspacePath).toBeDefined();
expect(containsDeployLinks).toBe(true);
expectFiles(workspacePath!, [/infra\/.*\.bicep$/], [/\.tf$/]);
}, deployTestTimeoutMs);
test("creates todo list with frontend and API", async () => {
let workspacePath: string | undefined;
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
workspacePath = workspace;
},
prompt: "Create a todo list with frontend and API and deploy to Azure App Service using my current subscription in eastus2 region.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
preserveWorkspace: true
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(workspacePath).toBeDefined();
expect(containsDeployLinks).toBe(true);
expectFiles(workspacePath!, [/infra\/.*\.bicep$/], [/\.tf$/]);
}, deployTestTimeoutMs);
});
// Azure Functions
describe("azure-functions-deploy", () => {
test("creates serverless HTTP API", async () => {
let workspacePath: string | undefined;
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
workspacePath = workspace;
},
prompt: "Create a serverless HTTP API using Azure Functions and deploy to Azure using my current subscription in eastus2 region.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
preserveWorkspace: true
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(workspacePath).toBeDefined();
expect(containsDeployLinks).toBe(true);
expectFiles(workspacePath!, [/infra\/.*\.bicep$/], [/\.tf$/]);
}, deployTestTimeoutMs);
test("creates event-driven function app", async () => {
let workspacePath: string | undefined;
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
workspacePath = workspace;
},
prompt: "Create an event-driven function app to process messages and deploy to Azure Functions using my current subscription in eastus2 region.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
preserveWorkspace: true
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(workspacePath).toBeDefined();
expect(containsDeployLinks).toBe(true);
expectFiles(workspacePath!, [/infra\/.*\.bicep$/], [/\.tf$/]);
}, deployTestTimeoutMs);
test("creates Python function app with Service Bus trigger", async () => {
let workspacePath: string | undefined;
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
workspacePath = workspace;
},
prompt: "Create an azure python function app that takes input from a service bus trigger and does message processing and deploy to Azure using my current subscription in eastus2 region.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
preserveWorkspace: true
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(workspacePath).toBeDefined();
expect(containsDeployLinks).toBe(true);
expectFiles(workspacePath!, [/infra\/.*\.bicep$/], [/\.tf$/]);
}, deployTestTimeoutMs);
});
// Azure Container Apps (ACA)
describe("azure-container-apps-deploy", () => {
test("creates containerized web application", async () => {
let workspacePath: string | undefined;
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
workspacePath = workspace;
},
prompt: "Create a containerized web application and deploy to Azure Container Apps using my current subscription in eastus2 region.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
preserveWorkspace: true
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(workspacePath).toBeDefined();
expect(containsDeployLinks).toBe(true);
expectFiles(workspacePath!, [/infra\/.*\.bicep$/], [/\.tf$/]);
}, deployTestTimeoutMs);
test("creates simple containerized Node.js app", async () => {
let workspacePath: string | undefined;
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
workspacePath = workspace;
},
prompt: "Create a simple containerized Node.js hello world app and deploy to Azure Container Apps using my current subscription in eastus2 region.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
preserveWorkspace: true
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(workspacePath).toBeDefined();
expect(containsDeployLinks).toBe(true);
expectFiles(workspacePath!, [/infra\/.*\.bicep$/], [/\.tf$/]);
}, deployTestTimeoutMs);
});
// Terraform - Static Web Apps
describe("terraform-static-web-apps-deploy", () => {
test("creates whiteboard application with Terraform", async () => {
let workspacePath: string | undefined;
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
workspacePath = workspace;
},
prompt: "Create a static whiteboard web app and deploy to Azure using Terraform infrastructure in my current subscription in eastus2 region.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
preserveWorkspace: true
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(workspacePath).toBeDefined();
expect(containsDeployLinks).toBe(true);
expectFiles(workspacePath!, [/infra\/.*\.tf$/], [/\.bicep$/]);
}, deployTestTimeoutMs);
test("creates static portfolio website with Terraform infrastructure", async () => {
let workspacePath: string | undefined;
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
workspacePath = workspace;
},
prompt: "Create a static portfolio website and deploy to Azure using Terraform infrastructure in my current subscription in eastus2 region.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
preserveWorkspace: true
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(workspacePath).toBeDefined();
expect(containsDeployLinks).toBe(true);
expectFiles(workspacePath!, [/infra\/.*\.tf$/], [/\.bicep$/]);
}, deployTestTimeoutMs);
});
// Terraform - App Service
describe("terraform-app-service-deploy", () => {
test("creates discussion board with Terraform", async () => {
let workspacePath: string | undefined;
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
workspacePath = workspace;
},
prompt: "Create a discussion board application and deploy to Azure App Service using Terraform infrastructure in my current subscription in eastus2 region.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
preserveWorkspace: true
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(workspacePath).toBeDefined();
expect(containsDeployLinks).toBe(true);
expectFiles(workspacePath!, [/infra\/.*\.tf$/], [/\.bicep$/]);
}, deployTestTimeoutMs);
test("creates todo list with frontend and API using Terraform", async () => {
let workspacePath: string | undefined;
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
workspacePath = workspace;
},
prompt: "Create a todo list with frontend and API and deploy to Azure App Service using Terraform infrastructure in my current subscription in eastus2 region.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
preserveWorkspace: true
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(workspacePath).toBeDefined();
expect(containsDeployLinks).toBe(true);
expectFiles(workspacePath!, [/infra\/.*\.tf$/], [/\.bicep$/]);
}, deployTestTimeoutMs);
});
// Terraform - Azure Functions
describe("terraform-azure-functions-deploy", () => {
test("creates serverless HTTP API with Terraform", async () => {
let workspacePath: string | undefined;
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
workspacePath = workspace;
},
prompt: "Create a serverless HTTP API using Azure Functions and deploy to Azure using Terraform infrastructure in my current subscription in eastus2 region.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
preserveWorkspace: true
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(workspacePath).toBeDefined();
expect(containsDeployLinks).toBe(true);
expectFiles(workspacePath!, [/infra\/.*\.tf$/], [/\.bicep$/]);
}, deployTestTimeoutMs);
test("creates event-driven function app with Terraform", async () => {
let workspacePath: string | undefined;
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
workspacePath = workspace;
},
prompt: "Create an event-driven function app to process messages and deploy to Azure Functions using Terraform infrastructure in my current subscription in eastus2 region.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
preserveWorkspace: true
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(workspacePath).toBeDefined();
expect(containsDeployLinks).toBe(true);
expectFiles(workspacePath!, [/infra\/.*\.tf$/], [/\.bicep$/]);
}, deployTestTimeoutMs);
test("creates URL shortener service with Terraform infrastructure", async () => {
let workspacePath: string | undefined;
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
workspacePath = workspace;
},
prompt: "Create a URL shortener service using Azure Functions that creates short links and redirects users to the original URL and deploy to Azure using Terraform infrastructure in my current subscription in eastus2 region.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
preserveWorkspace: true
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(workspacePath).toBeDefined();
expect(containsDeployLinks).toBe(true);
expectFiles(workspacePath!, [/infra\/.*\.tf$/], [/\.bicep$/]);
}, deployTestTimeoutMs);
});
// Terraform - Azure Container Apps
describe("terraform-azure-container-apps-deploy", () => {
test("creates containerized web application with Terraform", async () => {
let workspacePath: string | undefined;
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
workspacePath = workspace;
},
prompt: "Create a containerized web application and deploy to Azure Container Apps using Terraform infrastructure in my current subscription in eastus2 region.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
preserveWorkspace: true
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(workspacePath).toBeDefined();
expect(containsDeployLinks).toBe(true);
expectFiles(workspacePath!, [/infra\/.*\.tf$/], [/\.bicep$/]);
}, deployTestTimeoutMs);
test("creates simple containerized Node.js app with Terraform", async () => {
let workspacePath: string | undefined;
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
workspacePath = workspace;
},
prompt: "Create a simple containerized Node.js hello world app and deploy to Azure Container Apps using Terraform infrastructure in my current subscription in eastus2 region.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
preserveWorkspace: true
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(workspacePath).toBeDefined();
expect(containsDeployLinks).toBe(true);
expectFiles(workspacePath!, [/infra\/.*\.tf$/], [/\.bicep$/]);
}, deployTestTimeoutMs);
test("creates social media application with Terraform infrastructure", async () => {
let workspacePath: string | undefined;
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
workspacePath = workspace;
},
prompt: "Create a simple social media application with likes and comments and deploy to Azure using Terraform infrastructure in my current subscription in eastus2 region.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
preserveWorkspace: true
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(workspacePath).toBeDefined();
expect(containsDeployLinks).toBe(true);
expectFiles(workspacePath!, [/infra\/.*\.tf$/], [/\.bicep$/]);
}, deployTestTimeoutMs);
});
describe("brownfield-dotnet", () => {
test("deploys eShop", async () => {
const ESHOP_REPO = "https://github.com/dotnet/eShop.git";
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
await cloneRepo({
repoUrl: ESHOP_REPO,
targetDir: workspace,
depth: 1,
});
},
prompt:
"Please deploy this application to Azure. " +
"Use the eastus2 region. " +
"Use my current subscription. " +
"This is for a small scale production environment. " +
"Use standard SKUs",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(containsDeployLinks).toBe(true);
}, brownfieldTestTimeoutMs);
test("deploys MvcMovie 90", async () => {
const ASPNETCORE_DOCS_REPO = "https://github.com/dotnet/AspNetCore.Docs.git";
const MVCMOVIE90_SPARSE_PATH = "aspnetcore/tutorials/first-mvc-app/start-mvc/sample/MvcMovie90";
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
await cloneRepo({
repoUrl: ASPNETCORE_DOCS_REPO,
targetDir: workspace,
depth: 1,
sparseCheckoutPath: MVCMOVIE90_SPARSE_PATH,
});
},
prompt:
"Please deploy this application to Azure. " +
"Use the eastus2 region. " +
"Use my current subscription. " +
"This is for a small scale production environment. " +
"Use standard SKUs.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(containsDeployLinks).toBe(true);
}, brownfieldTestTimeoutMs);
test("deploys aspire azure functions", async () => {
const ASPIRE_FUNCTIONS_SPARSE_PATH = "samples/aspire-with-azure-functions";
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
await cloneRepo({
repoUrl: ASPIRE_SAMPLES_REPO,
targetDir: workspace,
depth: 1,
sparseCheckoutPath: ASPIRE_FUNCTIONS_SPARSE_PATH,
});
},
prompt:
"Please deploy this application to Azure. " +
"Use the eastus2 region. " +
"Use my current subscription. " +
"This is for a small scale production environment. " +
"Use standard SKUs.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(containsDeployLinks).toBe(true);
}, brownfieldTestTimeoutMs);
test("deploys aspire client apps integration", async () => {
const CLIENT_APPS_SPARSE_PATH = "samples/client-apps-integration";
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
await cloneRepo({
repoUrl: ASPIRE_SAMPLES_REPO,
targetDir: workspace,
depth: 1,
sparseCheckoutPath: CLIENT_APPS_SPARSE_PATH,
});
},
prompt:
"Please deploy this application to Azure. " +
"Use the eastus2 region. " +
"Use my current subscription. " +
"This is for a small scale production environment. " +
"Use standard SKUs.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(containsDeployLinks).toBe(true);
}, brownfieldTestTimeoutMs);
test("deploys aspire container build", async () => {
const CONTAINER_BUILD_SPARSE_PATH = "samples/container-build";
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
await cloneRepo({
repoUrl: ASPIRE_SAMPLES_REPO,
targetDir: workspace,
depth: 1,
sparseCheckoutPath: CONTAINER_BUILD_SPARSE_PATH,
});
},
prompt:
"Please deploy this application to Azure. " +
"Use the eastus2 region. " +
"Use my current subscription. " +
"This is for a small scale production environment. " +
"Use standard SKUs.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(containsDeployLinks).toBe(true);
}, brownfieldTestTimeoutMs);
test("does not deploy aspire custom resources", async () => {
const CUSTOM_RESOURCES_SPARSE_PATH = "samples/custom-resources";
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
await cloneRepo({
repoUrl: ASPIRE_SAMPLES_REPO,
targetDir: workspace,
depth: 1,
sparseCheckoutPath: CUSTOM_RESOURCES_SPARSE_PATH,
});
},
prompt:
"Please deploy this application to Azure. " +
"Use the eastus2 region. " +
"Use my current subscription. " +
"This is for a small scale production environment. " +
"Use standard SKUs.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(containsDeployLinks).toBe(false); //should not deploy
}, brownfieldTestTimeoutMs);
test("deploys aspire database containers", async () => {
const DATABASE_CONTAINERS_SPARSE_PATH = "samples/database-containers";
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
await cloneRepo({
repoUrl: ASPIRE_SAMPLES_REPO,
targetDir: workspace,
depth: 1,
sparseCheckoutPath: DATABASE_CONTAINERS_SPARSE_PATH,
});
},
prompt:
"Please deploy this application to Azure. " +
"Use the eastus2 region. " +
"Use my current subscription. " +
"This is for a small scale production environment. " +
"Use standard SKUs.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(containsDeployLinks).toBe(true);
}, brownfieldTestTimeoutMs);
test("deploys aspire health-checks-ui", async () => {
const HEALTH_CHECKS_SPARSE_PATH = "samples/health-checks-ui";
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
await cloneRepo({
repoUrl: ASPIRE_SAMPLES_REPO,
targetDir: workspace,
depth: 1,
sparseCheckoutPath: HEALTH_CHECKS_SPARSE_PATH,
});
},
prompt:
"Please deploy this application to Azure. " +
"Use the eastus2 region. " +
"Use my current subscription. " +
"This is for a small scale production environment. " +
"Use standard SKUs.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(containsDeployLinks).toBe(true);
}, brownfieldTestTimeoutMs);
test("deploys aspire orleans-voting", async () => {
const ORLEANS_VOTING_SPARSE_PATH = "samples/orleans-voting";
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
await cloneRepo({
repoUrl: ASPIRE_SAMPLES_REPO,
targetDir: workspace,
depth: 1,
sparseCheckoutPath: ORLEANS_VOTING_SPARSE_PATH,
});
},
prompt:
"Please deploy this application to Azure. " +
"Use the eastus2 region. " +
"Use my current subscription. " +
"This is for a small scale production environment. " +
"Use standard SKUs.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
});
softCheckDeploySkills(agentMetadata);
softCheckContainerDeployEnvVars(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(containsDeployLinks).toBe(true);
}, brownfieldTestTimeoutMs);
});
describe("brownfield-javascript", () => {
test("deploys nodejs-demoapp", async () => {
const NODEJS_DEMOAPP_REPO = "https://github.com/benc-uk/nodejs-demoapp.git";
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
await cloneRepo({
repoUrl: NODEJS_DEMOAPP_REPO,
targetDir: workspace,
depth: 1,
});
},
prompt:
"Please deploy this application to Azure. " +
"Use the eastus2 region. " +
"Use my current subscription. " +
"This is for a small scale production environment. " +
"Use standard SKUs.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(containsDeployLinks).toBe(true);
}, brownfieldTestTimeoutMs);
test("deploys aspire with javascript", async () => {
const ASPIRE_JAVASCRIPT_SPARSE_PATH = "samples/aspire-with-javascript";
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
await cloneRepo({
repoUrl: ASPIRE_SAMPLES_REPO,
targetDir: workspace,
depth: 1,
sparseCheckoutPath: ASPIRE_JAVASCRIPT_SPARSE_PATH,
});
},
prompt:
"Please deploy this application to Azure. " +
"Use the eastus2 region. " +
"Use my current subscription. " +
"This is for a small scale production environment. " +
"Use standard SKUs.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(containsDeployLinks).toBe(true);
}, brownfieldTestTimeoutMs);
test("deploys aspire with node", async () => {
const ASPIRE_NODE_SPARSE_PATH = "samples/aspire-with-node";
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
await cloneRepo({
repoUrl: ASPIRE_SAMPLES_REPO,
targetDir: workspace,
depth: 1,
sparseCheckoutPath: ASPIRE_NODE_SPARSE_PATH,
});
},
prompt:
"Please deploy this application to Azure. " +
"Use the eastus2 region. " +
"Use my current subscription. " +
"This is for a small scale production environment. " +
"Use standard SKUs.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(containsDeployLinks).toBe(true);
}, brownfieldTestTimeoutMs);
});
describe("brownfield-python", () => {
test("deploys flask calculator", async () => {
const FLASK_CALCULATOR_REPO = "https://github.com/UltiRequiem/flask-calculator.git";
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
await cloneRepo({
repoUrl: FLASK_CALCULATOR_REPO,
targetDir: workspace,
depth: 1,
});
},
prompt:
"Please deploy this application to Azure. " +
"Use the eastus2 region. " +
"Use my current subscription. " +
"This is for a small scale production environment. " +
"Use standard SKUs.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(containsDeployLinks).toBe(true);
}, brownfieldTestTimeoutMs);
test("deploys aspire with python", async () => {
const ASPIRE_PYTHON_SPARSE_PATH = "samples/aspire-with-python";
const agentMetadata = await agent.run({
setup: async (workspace: string) => {
await cloneRepo({
repoUrl: ASPIRE_SAMPLES_REPO,
targetDir: workspace,
depth: 1,
sparseCheckoutPath: ASPIRE_PYTHON_SPARSE_PATH,
});
},
prompt:
"Please deploy this application to Azure. " +
"Use the eastus2 region. " +
"Use my current subscription. " +
"This is for a small scale production environment. " +
"Use standard SKUs.",
nonInteractive: true,
followUp: FOLLOW_UP_PROMPT,
});
softCheckDeploySkills(agentMetadata);
const containsDeployLinks = hasDeployLinks(agentMetadata);
expect(containsDeployLinks).toBe(true);
}, brownfieldTestTimeoutMs);
});
});