1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-05 07:06:14 +02:00

Merge pull request #2680 from utam0k/fix-contest-link

Fix the links of contest
This commit is contained in:
Yashodhan 2024-02-12 10:40:34 +05:30 committed by GitHub
commit 7ea639c4c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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>
@ -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}}
```