generated from actions/container-action
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable tests to run without a GitHub personal access token (#87)
* Move temporary test files to a temporary directory This ensures that if/when we have a need to store test data permanently in the `testdata` directory (e.g. for mocks), the `testdata` directory won't be inadvertently deleted. * Enable tests to run without a GitHub token This means that we no longer need to provide a GitHub `INPUT_REPO_TOKEN` environment variable when running the tests (fixes #85). The tests now use Hoverfly[1] by default, which proxies the calls to the GitHub API and returns simulated responses[2] instead. Also used Hoverfly to capture[3] these simulated responses. The tests can also be run with an -integration flag, which means they will make calls to the real GitHub API, requring a GitHub `INPUT_REPO_TOKEN` environment variable to have been set. Steps to install Hoverfly locally (you must do this on your local machine before you can run the tests): 1. Install Hoverfly[4] 2. Download the Hoverfly default cert[5] 3. Add and trust the Hoverfly default cert[6] (how to add and trust a cert)[7] [1] https://docs.hoverfly.io/ [2] https://docs.hoverfly.io/en/latest/pages/keyconcepts/simulations/simulations.html [3] https://docs.hoverfly.io/en/latest/pages/keyconcepts/modes/capture.html [4] https://docs.hoverfly.io/en/latest/pages/introduction/downloadinstallation.html [5] https://raw.githubusercontent.com/SpectoLabs/hoverfly/master/core/cert.pem [6] https://docs.hoverfly.io/en/latest/pages/tutorials/advanced/configuressl/configuressl.html [7] https://manuals.gfi.com/en/kerio/connect/content/server-configuration/ssl-certificates/adding-trusted-root-certificates-to-the-server-1605.html * Use JSON simulated GitHub responses, not gzip The original captured GitHub API responses were gzip encoded, which made them unreadable (without manually decoding them). There is a feature request to have Hoverfly to do this translation automatically when exporting captured simulations, but it is not available yet[1]. So this commit has manually placed the decoded JSON in the simulated responses. [1] SpectoLabs/hoverfly#787 * Run default and integration tests on commit Update the GitHub Action to run the tests in both default mode (with virtualised service calls), and integration mode (with calls to the real GitHub API). * Install Hoverfly on devcontainer for virtual tests Also added and trusted the Hoverfly default certificate[1], so that Hoverfly https calls work And also set the tests to run in verbose mode in Visual Studio Code, so we get more informative output when running them. [1] https://raw.githubusercontent.com/SpectoLabs/hoverfly/master/core/cert.pem https://hoverfly.readthedocs.io/ * Add contributing guidelines https://docs.github.com/en/github/building-a-strong-community/setting-guidelines-for-repository-contributors Closes #78, #85
- Loading branch information
Showing
10 changed files
with
697 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# See | ||
# https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners | ||
# https://github.blog/2017-07-06-introducing-code-owners/ | ||
|
||
# Lines starting with '#' are comments. | ||
# Each line is a file pattern followed by one or more owners. | ||
|
||
# These owners will be the default owners for everything in the repo. | ||
* @johnboyes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
on: [push] # yamllint disable-line rule:truthy | ||
name: Tests | ||
jobs: | ||
tests: | ||
name: Virtual | ||
strategy: | ||
matrix: | ||
go-version: [1.14.x] | ||
os: [ubuntu-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Install Hoverfly | ||
working-directory: ${{ runner.temp }} | ||
run: | | ||
mkdir -p $GITHUB_WORKSPACE/bin | ||
export HOVERFLY_PLATFORM=linux_amd64 | ||
export HOVERFLY_VERSION=v1.3.0 | ||
export HOVERFLY_BUNDLE=hoverfly_bundle_$HOVERFLY_PLATFORM | ||
export HOVERFLY_DOWNLOAD_URL=https://github.com/SpectoLabs/hoverfly/releases/download/ | ||
wget $HOVERFLY_DOWNLOAD_URL$HOVERFLY_VERSION/$HOVERFLY_BUNDLE.zip | ||
unzip $HOVERFLY_BUNDLE.zip | ||
mv hoverfly $GITHUB_WORKSPACE/bin/ | ||
mv hoverctl $GITHUB_WORKSPACE/bin/ | ||
echo "::add-path::$GITHUB_WORKSPACE/bin" | ||
chmod +x $GITHUB_WORKSPACE/bin/hoverfly | ||
chmod +x $GITHUB_WORKSPACE/bin/hoverctl | ||
- name: Add and trust Hoverfly default certificate | ||
run: | | ||
wget https://raw.githubusercontent.com/SpectoLabs/hoverfly/master/core/cert.pem | ||
sudo mv cert.pem /usr/local/share/ca-certificates/hoverfly.crt | ||
sudo update-ca-certificates | ||
- name: Tests | ||
run: go test -v . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
extends: default | ||
|
||
rules: | ||
# 120 chars should be enough, but don't fail if a line is longer | ||
line-length: | ||
max: 120 | ||
level: warning |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
# How to contribute | ||
|
||
Firstly thanks for thinking of contributing - the project is [open source](https://opensource.guide/how-to-contribute/) and all contributions are very welcome :slightly_smiling_face: :boom: :thumbsup: | ||
|
||
[How to report a bug or suggest a new feature](#how-to-report-a-bug-or-suggest-a-new-feature) | ||
|
||
[How to make a contribution](#how-to-make-a-contribution) | ||
|
||
[Local development](#local-development) | ||
* [Visual Studio Code](#visual-studio-code) | ||
* [Codespaces](#codespaces) | ||
* [Local development from scratch](#local-development-from-scratch) | ||
* [Dependencies](#dependencies) | ||
* [Tools and technologies](#tools-and-technologies) | ||
* [GitHub Actions](#github-actions) | ||
* [Go](#go) | ||
* [Mage](#mage) | ||
|
||
[Running the tests](#running-the-tests) | ||
|
||
## How to report a bug or suggest a new feature | ||
|
||
[Create an issue](https://github.com/agilepathway/label-checker/issues), describing the bug or new feature in as much detail as you can. | ||
|
||
## How to make a contribution | ||
|
||
* [Create an issue](https://github.com/agilepathway/label-checker/issues) describing the change you are proposing. | ||
* [Create a pull request](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests). The project uses the _[fork and pull model](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models)_: | ||
* [Fork the project](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/working-with-forks) | ||
* Make your changes on your fork | ||
* Write a [good commit message(s)](https://chris.beams.io/posts/git-commit/) for your changes | ||
* [Create the pull request for your changes](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests) | ||
* [Update the tests or add new tests](#running-the-tests) to cover the new behaviour. | ||
|
||
## Local development | ||
|
||
### Visual Studio Code | ||
|
||
The easiest way to set up your development environment (unless you have [Codespaces](#codespaces), which is even easier) is to use [Visual Studio Code](https://code.visualstudio.com/)'s [Remote Containers](https://code.visualstudio.com/docs/remote/containers) functionality: | ||
* [System requirements](https://code.visualstudio.com/docs/remote/containers#_system-requirements) | ||
* [Fork the project](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/working-with-forks) | ||
* [Open the local project folder in a container](https://code.visualstudio.com/docs/remote/containers#_quick-start-open-an-existing-folder-in-a-container) | ||
* Everything will then be setup for you. You'll be able to run the tests locally. | ||
|
||
### Codespaces | ||
|
||
If you have access to [GitHub Codespaces](https://github.com/features/codespaces/) (which allows full remote | ||
development from within your browser) then all you need to do is [fork the project](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/working-with-forks) and open it in Codespaces - easy! | ||
|
||
### Local development from scratch | ||
|
||
#### Dependencies | ||
|
||
* [Go](https://golang.org/) | ||
* [Hoverfly](https://hoverfly.readthedocs.io) (for [running the tests](#running-the-tests)) | ||
1. [Download and install Hoverfly](https://docs.hoverfly.io/en/latest/pages/introduction/downloadinstallation.html) | ||
2. [Download the Hoverfly default cert](https://raw.githubusercontent.com/SpectoLabs/hoverfly/master/core/cert.pem) | ||
3. [Add and trust the Hoverfly default cert](https://docs.hoverfly.io/en/latest/pages/tutorials/advanced/configuressl/configuressl.html) [(how to add and trust | ||
a cert)](https://manuals.gfi.com/en/kerio/connect/content/server-configuration/ssl-certificates/adding-trusted-root-certificates-to-the-server-1605.html) | ||
|
||
|
||
### Tools and technologies | ||
|
||
#### GitHub Actions | ||
* [General documentation](https://docs.github.com/en/actions) | ||
* The Label Checker is a [Docker container action](https://docs.github.com/en/actions/creating-actions/creating-a-docker-container-action) | ||
|
||
#### Go | ||
|
||
Some reasons we chose [Go](https://golang.org/): | ||
* [readability](https://yourbasic.org/golang/advantages-over-java-python/#code-transparency) | ||
* [ease of deployment](https://hub.packtpub.com/cloud-native-go-programming/) | ||
* [backwards compatibility](https://yourbasic.org/golang/advantages-over-java-python/#compatibility) | ||
|
||
#### Mage | ||
|
||
The application is built using [Mage](https://magefile.org/), which is the Go equivalent of [Make](https://www.gnu.org/software/make/). | ||
|
||
## Running the tests | ||
|
||
As [above](#dependencies), you need [Hoverfly](https://hoverfly.readthedocs.io) to run the tests. | ||
|
||
Run the tests: | ||
|
||
`go test -v .` | ||
|
||
The tests are [table driven](https://dave.cheney.net/2019/05/07/prefer-table-driven-tests), which is an important concept to know when amending them. | ||
|
||
The tests also have an integration mode which makes calls to real external services instead of using Hoverfly to virtualise the service calls. You do not need to run the tests in integration mode when contributing (they will not pass unless you are a [maintainer](.github/CODEOWNERS) of the project who has the designated GitHub permissions). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.