@@ -2,54 +2,58 @@ import { describeAccuracyTests } from "./sdk/describeAccuracyTests.js";
22
33describeAccuracyTests ( [
44 {
5- prompt : "Setup a local MongoDB cluster" ,
5+ prompt : "Setup a local MongoDB cluster named 'local-cluster' " ,
66 expectedToolCalls : [
77 {
88 toolName : "atlas-local-create-deployment" ,
9- parameters : { } ,
9+ parameters : {
10+ deploymentName : "local-cluster" ,
11+ } ,
1012 } ,
1113 ] ,
1214 } ,
1315 {
14- prompt : "Create a local MongoDB instance" ,
16+ prompt : "Create a local MongoDB instance named 'local-cluster' " ,
1517 expectedToolCalls : [
1618 {
1719 toolName : "atlas-local-create-deployment" ,
18- parameters : { } ,
20+ parameters : {
21+ deploymentName : "local-cluster" ,
22+ } ,
1923 } ,
2024 ] ,
2125 } ,
2226 {
23- prompt : "Setup a local MongoDB database" ,
27+ prompt : "Setup a local MongoDB database named 'local-cluster' " ,
2428 expectedToolCalls : [
2529 {
2630 toolName : "atlas-local-create-deployment" ,
27- parameters : { } ,
31+ parameters : {
32+ deploymentName : "local-cluster" ,
33+ } ,
2834 } ,
2935 ] ,
3036 } ,
3137 {
32- prompt : "Create a local MongoDB database named 'local-mflix' " ,
38+ prompt : "Setup a local MongoDB cluster, do not specify a name " ,
3339 expectedToolCalls : [
3440 {
3541 toolName : "atlas-local-create-deployment" ,
36- parameters : {
37- deploymentName : "local-mflix" ,
38- } ,
42+ parameters : { } ,
3943 } ,
4044 ] ,
4145 } ,
4246 {
43- prompt : "If and only if, the local MongoDB deployment 'this -database' does not exist, then create it" ,
47+ prompt : "If and only if, the local MongoDB deployment 'new -database' does not exist, then create it" ,
4448 expectedToolCalls : [
4549 {
46- toolName : "list-collections " ,
50+ toolName : "atlas-local- list-deployments " ,
4751 parameters : { } ,
4852 } ,
4953 {
50- toolName : "create-collection " ,
54+ toolName : "atlas-local- create-deployment " ,
5155 parameters : {
52- deploymentName : "this -database" ,
56+ deploymentName : "new -database" ,
5357 } ,
5458 } ,
5559 ] ,
0 commit comments