Skip to content

Commit

Permalink
Fix the links of contest
Browse files Browse the repository at this point in the history
Signed-off-by: utam0k <k0ma@utam0k.jp>
  • Loading branch information
utam0k committed Feb 11, 2024
1 parent 701085d commit e3487b7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/src/developer/e2e/rust_oci_test.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ We will not go into detail here, but will explain how to write and add a new tes
<p>

```rust,no_run,noplayground
{{#include ../../../../tests/integration_test/src/tests/example/hello_world.rs}}
{{#include ../../../../tests/contest/contest/src/tests/example/hello_world.rs}}
```

</p>
Expand All @@ -33,31 +33,31 @@ We will not go into detail here, but will explain how to write and add a new tes
Therefore, it is common practice here to write an OCI Runtime Spec that executes `runtimetest`.

```rust,no_run,noplayground
{{#include ../../../../tests/integration_test/src/tests/example/hello_world.rs:get_example_spec}}
{{#include ../../../../tests/contest/contest/src/tests/example/hello_world.rs:get_example_spec}}
```

2. Prepare a function that returns a `TestResult`, which represents the result of the test.

```rust,no_run,noplayground
{{#include ../../../../tests/integration_test/src/tests/example/hello_world.rs:example_test}}
{{#include ../../../../tests/contest/contest/src/tests/example/hello_world.rs:example_test}}
```

3. Create a `TestGroup` and register a test case you created

```rust,no_run,noplayground
{{#include ../../../../tests/integration_test/src/tests/example/hello_world.rs:get_example_test}}
{{#include ../../../../tests/contest/contest/src/tests/example/hello_world.rs:get_example_test}}
```

4. Register the `TestGroup` you created to a `TestManager`

```rust,no_run,noplayground
{{#include ../../../../tests/integration_test/src/main.rs:register_example_test}}
{{#include ../../../../tests/contest/contest/src/main.rs:register_example_test}}
```

5. Write the validation you want to run within a test container
```rust,no_run,noplayground
{{#include ../../../../tests/runtimetest/src/main.rs:example_runtimetest_main}}
{{#include ../../../../tests/contest/runtimetest/src/main.rs:example_runtimetest_main}}
```
```rust,no_run,noplayground
{{#include ../../../../tests/runtimetest/src/tests.rs:example_hello_world}}
{{#include ../../../../tests/contest/runtimetest/src/tests.rs:example_hello_world}}
```

0 comments on commit e3487b7

Please sign in to comment.