Skip to content

Commit

Permalink
chore: remove e2e crate, update development docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaro00 committed Mar 16, 2024
1 parent 4937f4b commit 66a042d
Show file tree
Hide file tree
Showing 19 changed files with 13 additions and 839 deletions.
31 changes: 0 additions & 31 deletions .circleci/config.yml
Expand Up @@ -275,24 +275,6 @@ jobs:
- apply-patches
- run: cargo make test-member-integration-docker << parameters.crate >>
- save-sccache
e2e-test: # outdated
executor: machine-ubuntu
resource_class: medium
steps:
- install-rust
- checkout
- run: git submodule update --init
- run: make images
- apply-patches
- run:
name: Run the E2E tests
command: |
# clean up a potential existing deployments before running
# the tests just in case the environment is not clean
make down
make up
SHUTTLE_TESTS_NETWORK=shuttle-dev_user-net SHUTTLE_TESTS_RUNTIME_IMAGE=public.ecr.aws/shuttle-dev/deployer:latest cargo test --package shuttle-gateway --all-features --lib -- --nocapture
make test
build-and-push:
executor: machine-ubuntu
parameters:
Expand Down Expand Up @@ -712,19 +694,6 @@ workflows:
filters:
branches:
only: main
# - e2e-test:
# requires:
# - test-standalone
# - test-standalone-shared-db
# - test-workspace-member
# - test-workspace-member-with-integration-medium
# - test-workspace-member-with-integration-large
# - test-workspace-member-with-integration-xlarge
# - test-workspace-member-with-integration-docker-medium
# - test-workspace-member-with-integration-docker-large
# filters:
# branches:
# only: production
unstable:
jobs:
- approve-deploy-images-unstable:
Expand Down
1 change: 0 additions & 1 deletion .dockerignore
Expand Up @@ -9,4 +9,3 @@
!**/README.md
Makefile
/assets
/e2e
2 changes: 0 additions & 2 deletions .gitignore
Expand Up @@ -29,8 +29,6 @@ acme*.json
**/secrets.tfvar
**/.terraform*

e2e/users.toml

# direnv cache directory
.direnv/

Expand Down
1 change: 0 additions & 1 deletion Cargo.toml
Expand Up @@ -17,7 +17,6 @@ members = [
"service",
]
exclude = [
"e2e",
"examples",
"resources",
"services",
Expand Down
48 changes: 13 additions & 35 deletions DEVELOPING.md
Expand Up @@ -20,7 +20,6 @@ graph BT
cargo-shuttle:::binary
common
codegen
e2e
proto
provisioner:::binary
service
Expand All @@ -41,9 +40,6 @@ graph BT
service --> codegen
proto ---> common
provisioner --> proto
e2e -.->|starts up| gateway
e2e -.->|starts up| auth
e2e -.->|calls| cargo-shuttle
user -->|"features = ['codegen']"| service
```

Expand All @@ -65,17 +61,14 @@ and renewing SSL certificates through the acme client in the `gateway`.
The redirect through `runtime` is to make it available under the prettier name of `shuttle_runtime::main`.
- `runtime` contains the `alpha` runtime, which embeds a gRPC server and a `Loader` in a service with the `shuttle_runtime::main` macro.
The gRPC server receives commands from `deployer` like `start` and `stop`.
The `Loader` sets up a tracing subscriber and provisions resources for the users service.
The `Loader` sets up a tracing subscriber and provisions resources for the user service.
- `service` is where our special `Service` trait is defined.
Anything implementing this `Service` can be loaded by the `deployer` and the local runner in `cargo-shuttle`.
The `service` library also defines the `ResourceBuilder` and `Factory` trais which are used in our codegen to provision resources.
The `service` library also contains the utilities we use for compiling users crates with `cargo`.
The `service` library also defines the `ResourceConfigBuilder` trait which is used in our codegen to provision resources.
The `service` library also contains the utilities we use for compiling user crates with `cargo`.
- `proto` contains the gRPC server and client definitions to allow `deployer` to communicate with `provisioner`, and to allow the `deployer` and `cargo-shuttle` cli to communicate with the `alpha` runtime.
- `resources` contains various implementations of `ResourceBuilder`, which are consumed in the `codegen` to provision resources.
- `services` contains implementations of `Service` for common Rust web frameworks. Anything implementing `Service` can be deployed by shuttle.
- `e2e` just contains tests which starts up the `deployer` in a container and then deploys services to it using `cargo-shuttle`.

Lastly, the `user service` is not a folder in this repository, but is the user service that will be deployed by `deployer`.
- `services` contains implementations of `Service` for common Rust web frameworks. Anything implementing `Service` can be deployed on Shuttle.

## Running Locally

Expand Down Expand Up @@ -228,12 +221,10 @@ cargo run -p cargo-shuttle -- --wd <path> --name <name> deploy

#### Docker Desktop

If using Docker Desktop on Linux, you might find adding this to your shell config useful to make `bollard` find the Docker socket:
If using Docker Desktop on Unix, you might find adding this to your shell config useful to make `bollard` find the Docker socket:

```sh
if which docker > /dev/null && [ $(docker context show) = "desktop-linux" ]; then
export DOCKER_HOST="unix://$HOME/.docker/desktop/docker.sock"
fi
export DOCKER_HOST="unix://$HOME/.docker/desktop/docker.sock"
```

#### Using Podman instead of Docker
Expand Down Expand Up @@ -291,38 +282,25 @@ when retrieving a user, and when we'll verify the subscription validity.

## Running Tests

Shuttle has reasonable test coverage - and we are working on improving this
every day. We encourage PRs to come with tests. If you're not sure about
what a test should look like, feel free to [get in touch](https://discord.gg/shuttle).
Install `cargo-make`.

To run the unit tests for a specific crate, from the root of the repository run:

```bash
# replace <crate-name> with the name of the crate to test, e.g. `shuttle-common`
cargo test -p <crate-name> --all-features --lib -- --nocapture
cargo make test-member <crate-name>
```

To run the integration tests for a specific crate (if it has any), from the root of the repository run:
Integration tests are split between those that rely on Docker, and those who don't.

```bash
# replace <crate-name> with the name of the crate to test, e.g. `cargo-shuttle`
cargo test -p <crate-name> --all-features --test '*' -- --nocapture
# To streamline and customize the integration tests for CI, bash scripts with these commands and
# any crate-specific commands can be run with:
./<folder>/integration.sh
# and/or
./<folder>/integration_docker.sh
# Tests that need to start docker containers are separated for CI efficiency, and thus use scripts with `_docker` suffix.
```

To run the end-to-end (e2e) tests, from the root of the repository run:
To run the integration tests for a specific crate (if it has any), from the root of the repository run:

```bash
make test
cargo make test-member-integration <crate-name>
# tests that depend on Docker
cargo make test-member-integration-docker <crate-name>
```

> Note: Running all the end-to-end tests may take a long time, so it is recommended to run individual tests shipped as part of each crate in the workspace first.
## Windows Considerations

Currently, if you try to use 'make images' on Windows, you may find that the shell files cannot be read by Bash/WSL. This is due to the fact that Windows may have pulled the files in CRLF format rather than LF[^1], which causes problems with Bash as to run the commands, Linux needs the file in LF format.
Expand Down
5 changes: 0 additions & 5 deletions Makefile
Expand Up @@ -178,11 +178,6 @@ otel:
deploy: docker-compose.yml
$(DOCKER_COMPOSE_ENV) docker stack deploy -c $< $(STACK)

test:
POSTGRES_PASSWORD=$(POSTGRES_PASSWORD) \
APPS_FQDN=$(APPS_FQDN) \
cargo test --manifest-path=e2e/Cargo.toml $(CARGO_TEST_FLAGS) -- --nocapture

docker-compose.rendered.yml: docker-compose.yml docker-compose.dev.yml
$(DOCKER_COMPOSE_ENV) $(DOCKER_COMPOSE) -f docker-compose.yml -f docker-compose.dev.yml $(DOCKER_COMPOSE_CONFIG_FLAGS) -p $(STACK) config > $@

Expand Down
13 changes: 0 additions & 13 deletions e2e/Cargo.toml

This file was deleted.

23 changes: 0 additions & 23 deletions e2e/README.md

This file was deleted.

23 changes: 0 additions & 23 deletions e2e/tests/integration/actix_web.rs

This file was deleted.

20 changes: 0 additions & 20 deletions e2e/tests/integration/axum.rs

This file was deleted.

0 comments on commit 66a042d

Please sign in to comment.