Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Let's improve everything: less spaghetti code, scan algorithm and CI improvement, lighter binary #55

Open
wants to merge 36 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
d1d5bb2
Improve Dockerfile to use Docker layer cache to avoid downloading dep…
pandatix Apr 9, 2021
05a5246
Fix module name as golang doc specifies it (https://golang.org/ref/mo…
pandatix Apr 9, 2021
23770e2
Remove default generated .gitignore by IDEA
pandatix Apr 9, 2021
15b8f4a
Improve CI to properly split tests, lint, build and publish stages
pandatix Apr 10, 2021
00eb35c
Add back a good gitignore
pandatix Apr 17, 2021
1fc76e0
Remove useless "---" at the beginning of file
pandatix Apr 17, 2021
9734aaf
Improve Dockerfile
pandatix Apr 18, 2021
adacab0
Replace spf13/cobra to urfave/cli/v2 + fix chopchop file struct + ref…
pandatix Apr 18, 2021
282953d
Fix CI
pandatix Apr 18, 2021
248e808
Fix after refacto
pandatix Apr 18, 2021
7f16045
Fix login
pandatix Apr 18, 2021
06cb821
Move .yamllint to a more appropriated place
pandatix Apr 18, 2021
4fda1e9
Rename Output to Result which makes more sense
pandatix Apr 18, 2021
9246ca5
Improve errors
pandatix Apr 18, 2021
3a2146e
Improve doc + improve errors
pandatix Apr 18, 2021
7ee1b53
Fix idea entry
pandatix Apr 18, 2021
7f11ff6
Implement basic UT
pandatix Apr 21, 2021
f70dbb7
Fix lint
pandatix Apr 21, 2021
c7996fc
Implement a proper scan algorithm
pandatix Apr 27, 2021
a4a334d
Improve stdout exports
pandatix May 1, 2021
22f2e08
Add functional tests
pandatix May 1, 2021
fd52498
Fix scan unit test
pandatix May 2, 2021
4e32e71
Fix scan to take endpoint in fetch
pandatix May 2, 2021
ec403ea
Decrease memory consumption for the scan plugins
pandatix May 3, 2021
67d88c1
Remove query string relic
pandatix May 3, 2021
bb4ce69
Remove insecure relic
pandatix May 3, 2021
8c1330d
Move log setup in CLI middleware + move CLI plugins cmd code in internal
pandatix Jun 13, 2021
c11f0b8
Shield CoreScanner Fetch method
pandatix Jun 13, 2021
64f1308
Fix CoreScanner doc
pandatix Jun 13, 2021
fcce80d
Remove improbable TODO
pandatix Jun 13, 2021
fff68ad
Update according to code refactor
pandatix Jun 13, 2021
8cc9f2e
Add TODOs
pandatix Jun 14, 2021
f5323f5
Update demo gif
pandatix Jun 14, 2021
f23722d
Fix "What's next" list
pandatix Jun 14, 2021
1b42d29
Update "Advanced usage" with new CLI
pandatix Jun 15, 2021
9fd836d
Add flags data at debug log level
pandatix Jun 15, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/.yamllint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
rules:
line-length: disable
30 changes: 0 additions & 30 deletions .github/workflows/build.yml

This file was deleted.

161 changes: 161 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,161 @@
name: CI

on: [push, pull_request]

jobs:
setup:
runs-on: ubuntu-latest
steps:
- name: Cancel previous
uses: styfle/cancel-workflow-action@0.8.0
with:
access_token: ${{ github.token }}

unit-tests:
strategy:
matrix:
go-version: [1.x, 1.16.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
include:
- go-version: 1.x
platform: ubuntu-latest
update-coverage: true
runs-on: ${{ matrix.platform }}
needs: [setup]
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}

- name: Cache go modules
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-

- name: Run go fmt
if: runner.os != 'Windows'
run: diff -u <(echo -n) <(gofmt -d -s .)

- name: Ensure go generate produces a zero diff
shell: bash
run: go generate -x ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code)

- name: Run go vet
run: go vet ./...

- name: Run go test
run: go test -v -race -coverprofile coverage.txt ./...

- name: Upload coverage to Codecov
if: ${{ matrix.update-coverage }}
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}

chopchop-endpoint:
runs-on: ubuntu-latest
needs: [setup]
steps:
- uses: actions/checkout@v1
- run: |
cat chopchop.yml | grep "uri:" | sort | uniq -c | sort -n
test=`cat chopchop.yml | grep "endpoint:" | sort | uniq -c | grep -v 1 | wc -l`
if [ $test != 0 ]; then echo "There shouldn't be multiple (and identical) 'endpoint'. It should be refactored. "; exit 1; fi

go-lint:
runs-on: ubuntu-latest
needs: [setup]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.16.x

- name: go-lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.39.0
golangci-lint run

yaml-lint:
runs-on: ubuntu-latest
needs: [setup]
steps:
- uses: actions/checkout@v2
- name: yaml-lint
uses: ibiqlik/action-yamllint@v3
with:
file_or_dir: chopchop.yml
config_file: .github/.yamllint.yml

functional-tests:
runs-on: ubuntu-latest
needs: [unit-tests, chopchop-endpoint, go-lint, yaml-lint]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.16.x

- name: Install RobotFramework
run: pip install robotframework

- name: Run RobotFramework tests
run: |
cd robot
./run.sh

- name: Upload Robot outputs
uses: actions/upload-artifact@v2
with:
name: robot-output
path: robot/out/*

build-and-publish:
runs-on: ubuntu-latest
needs: [functional-tests]
if: ${{ github.event_name == 'push' }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16.x

- name: Checkout code
uses: actions/checkout@v2

- name: Cache go modules
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-

- name: Install gox
run: go get github.com/mitchellh/gox

- name: Build using gox
run: |
cd cmd
gox -ldflags "-X main.Version=$BUILD_VERSION -X main.BuildDate=$BUILD_DATE" \
-output "../artifacts/ChopChop_{{.OS}}_{{.Arch}}" \
-osarch="!darwin/386"

- name: Upload ChopChop builds
uses: actions/upload-artifact@v2
with:
name: chopchop-artifacts
path: artifacts/*

- name: Release
uses: fnkr/github-action-ghr@v1
if: startsWith(github.ref, 'refs/tags/')
env:
GHR_COMPRESS: gz
GHR_PATH: artifacts/
GITHUB_TOKEN: ${{ secrets.DEPLOY_TOKEN }}
42 changes: 6 additions & 36 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
@@ -10,53 +10,23 @@ on:
tags:
- v*

# Run tests for any PRs.
pull_request:

env:
IMAGE_NAME: gochopchop

jobs:
# Run tests.
# See also https://docs.docker.com/docker-hub/builds/automated-testing/
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Run tests
run: |
if [ -f docker-compose.test.yml ]; then
docker-compose --file docker-compose.test.yml build
docker-compose --file docker-compose.test.yml run sut
else
docker build . --file Dockerfile
fi

# Push image to GitHub Packages.
# See also https://docs.docker.com/docker-hub/builds/
push:
# Ensure test job passes before pushing image.
needs: test

runs-on: ubuntu-latest
if: github.event_name == 'push'

steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.14.x
- name: Log into GitHub Container Registry
# The CR_PAT secret is a PAT with `read:packages` and `write:packages` scopes
run: echo "${{ secrets.CR_PAT }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin

- uses: actions/checkout@v2
- name: Unit Tests
run: go test ./...
- name: Build image
run: docker build . --file Dockerfile --tag $IMAGE_NAME

- name: Log into GitHub Container Registry
# TODO: Create a PAT with `read:packages` and `write:packages` scopes and save it as an Actions secret `CR_PAT`
run: echo "${{ secrets.CR_PAT }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin
- name: Build image
run: docker build -t $IMAGE_NAME .

- name: Push image to GitHub Container Registry
run: |
22 changes: 0 additions & 22 deletions .github/workflows/lint.yml

This file was deleted.

Loading