You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repo is a LocalStack extension (plugin) that enables a "proxy mode" - proxying requests for certain AWS services (e.g., S3) to the upstream real AWS cloud, while handling the remaining services locally.
4
+
5
+
## Testing
6
+
7
+
The proxy functionality is covered by integration tests in the `tests/` folder, one file for each different service.
8
+
9
+
To add a test, follow the pattern in the existing tests.
10
+
It usually involves creating two boto3 clients, one for the LocalStack connection, and one for the real upstream AWS cloud.
11
+
We then run API requests with both clients and assert that the results are identical, thereby ensuring that the proxy functionality is working properly.
12
+
13
+
You can assume that test AWS credentials are configured in the shell environment where the AI agent is running.
0 commit comments