Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

Commit

Permalink
Update README and license
Browse files Browse the repository at this point in the history
  • Loading branch information
hhenry01 committed Dec 18, 2023
1 parent 928e3dd commit ea00e56
Show file tree
Hide file tree
Showing 2 changed files with 102 additions and 0 deletions.
17 changes: 17 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
85 changes: 85 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,90 @@
# Network Systems

[![Tests](https://github.com/UBCSailbot/network_systems/actions/workflows/tests.yml/badge.svg)](https://github.com/UBCSailbot/network_systems/actions/workflows/tests.yml)

This repository contains the source code for all of UBC Sailbot's Network Systems programs. It is made to work as part
of [Sailbot Workspace](https://github.com/UBCSailbot/sailbot_workspace), and is **_not_** meant to be built as an
independent project.

## Setup

For comprehensive setup instructions, follow our [setup guide](https://ubcsailbot.github.io/docs/main/current/sailbot_workspace/setup/).

## Building

**Option A**: With sailbot_workspace open, invoke the VSCode `build` or `debug` task.

**Option B**: Run `/workspaces/sailbot_workspace/build.sh`

## Running

### ROS Launch

[Instructions found here.](https://ubcsailbot.github.io/docs/main/current/sailbot_workspace/launch_files/)

For example:

```bash
ros2 launch network_systems main_launch.py
```

This is the best option if multiple modules need to be run at once. Launch configurations are found under the
[config](config/) folder. These configurations define which modules to enable/disable and what parameters to use.

### ROS Run

If you just want to run a single module, then this is a direct and easy way to do it.

For example:

```bash
ros2 run network_systems example --ros-args -p enabled:=true
```

### Binary

Not recommended as you cannot pass ROS parameters, so modules may not work by default. Binaries for each module found
under [projects](projects/) can be found under
`/workspaces/sailbot_workspace/build/network_systems/projects/{module_name}/{module_name}`.

For example:

```bash
/workspaces/sailbot_workspace/build/network_systems/projects/example/example
```

## Testing

Unit tests specific to Network Systems is done using [GoogleTest](https://github.com/google/googletest). Unit tests
are defined per module. For example, under [projects/example/test/](projects/example/test/test_cached_fib.cpp).

### Run All Tests

**Option A**: With sailbot_workspace open, invoke the VSCode `test` task.

**Option B**: Under the sailbot_workspace directory, run `/workspaces/sailbot_workspace/test.sh`

Both options will run all of UBC Sailbot's tests, including those from other projects. More often than not, this is
unnecessary.

### Run and Debug Specific Tests

This is the preferred way to run and debug tests. When you open a test source file like
[the example's](projects/example/test/test_cached_fib.cpp), there will be green arrows next to each `TEST_F` macro.
Clicking a double green arrow runs a test suite, while clicking single green arrow runs one unit test. Right clicking
either arrow will open a prompt with a debug test option. When running a test via the debug option, we can set
breakpoints and step through our code line by line to resolve issues.

This convenient testing frontend is thank's to the
[TestMate extension](https://marketplace.visualstudio.com/items?itemName=matepek.vscode-catch2-test-adapter).

### Run Test Binaries

Test binaries for each module found under projects can be found under
`/workspaces/sailbot_workspace/build/network_systems/projects/{module_name}/test_{module_name}`.

For example:

```bash
/workspaces/sailbot_workspace/build/network_systems/projects/example/test_example
```

0 comments on commit ea00e56

Please sign in to comment.