Skip to content

Commit d450cd6

Browse files
committed
fix: Add back Gateway-based integ tests
1 parent 6b61e9f commit d450cd6

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

e2e_tests/python/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@ async def main() -> None:
120120
"Tell me a dad joke.",
121121
"Tell me a dog fact.",
122122
"Tell me a cat fact.",
123-
# "Who wrote the book Pride and Prejudice?",
124-
# "How do you pronounce the word 'onomatopoeia'?",
125-
# "Tell me the inspirational quote of the day.",
123+
"Who wrote the book Pride and Prejudice?",
124+
"How do you pronounce the word 'onomatopoeia'?",
125+
"Tell me the inspirational quote of the day.",
126126
"Who is Tom Cruise?",
127127
]
128128
chat_session = ChatSession(servers, llm_client, user_utterances)

e2e_tests/servers_config.integ.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,18 @@
2929
},
3030
"dad-jokes": {
3131
"serverStackName": "LambdaMcpServer-DadJokes-INTEG_TEST_ID"
32+
},
33+
"inspiration": {
34+
"serverSsmParameterName": "LambdaMcpServer-Inspiration-Gateway-INTEG_TEST_ID",
35+
"serverSsmRegion": "us-west-2"
36+
},
37+
"bookSearch": {
38+
"serverSsmParameterName": "LambdaMcpServer-BookSearch-Gateway-INTEG_TEST_ID",
39+
"serverSsmRegion": "us-west-2"
40+
},
41+
"dictionary": {
42+
"serverSsmParameterName": "LambdaMcpServer-Dictionary-Gateway-INTEG_TEST_ID",
43+
"serverSsmRegion": "us-west-2"
3244
}
3345
}
3446
}

e2e_tests/typescript/src/main.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ async function main(): Promise<void> {
6363
"Tell me a dad joke.",
6464
"Tell me a dog fact.",
6565
"Tell me a cat fact.",
66-
// "Who wrote the book Pride and Prejudice?",
67-
// "How do you pronounce the word 'onomatopoeia'?",
68-
// "Tell me the inspirational quote of the day.",
66+
"Who wrote the book Pride and Prejudice?",
67+
"How do you pronounce the word 'onomatopoeia'?",
68+
"Tell me the inspirational quote of the day.",
6969
"Who is Tom Cruise?",
7070
];
7171

0 commit comments

Comments
 (0)