mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +02:00
2643321e0f
* Switched to Lab for e2e tests * Switched to binary * Updated lab installation * Updated use of Lab installer * updates * Changed lab installation path * Updated use of installer * Works * Added additional functions * Updated some tests * Updated go.sum * Works * Refactored assertions * Added tests for testing.True * Added tests for testing.None * Added tests for testing.Lte * Added tests for testing.Lt * Added generic consturctor * Added tests for testing.Len * Added tests for testing.Gte * Added tests for testing.Gt * Added tests for testing.False * Added tests for testing.Empty * Added tests for testing.Fail * Added tests for testing.Equal * Added tests for testing.Include * Updated urls in static page tests * Fixed namespace unit tests * Fixed unit test for testing.Len * Updated E2E scripts * Updaes * Updated Chrome in CI/CD * Added e2e for example test click.fql * Added suite cases for example scripts * Updated examples * Updated * Added type assertions * Updated Chrome opts and disabled headers and cookies related tests * Fixed iframes example * Increased timeouts in navigation examples * Updated value example * Updated comments * Disabled cookies examples * Fixed static url * Disabled headers examples * Disabled UA test * Simplified wait logic * Added base testing module * Fixes after codereview * Disabled failing tests
82 lines
1.7 KiB
YAML
82 lines
1.7 KiB
YAML
language: go
|
|
|
|
sudo: required
|
|
|
|
os:
|
|
- linux
|
|
|
|
go:
|
|
- "1.11.x"
|
|
- "1.12.x"
|
|
- stable
|
|
|
|
env:
|
|
- ANTLR_VERSION=4.8
|
|
|
|
services:
|
|
- docker
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- openjdk-9-jre-headless
|
|
|
|
install:
|
|
- go get github.com/mgechev/revive
|
|
- sudo curl -o /usr/local/lib/antlr-${ANTLR_VERSION}-complete.jar https://www.antlr.org/download/antlr-${ANTLR_VERSION}-complete.jar
|
|
- export CLASSPATH=".:/usr/local/lib/antlr-${ANTLR_VERSION}-complete.jar:$CLASSPATH"
|
|
- mkdir $HOME/travis-bin
|
|
- echo -e '#!/bin/bash\njava -jar /usr/local/lib/antlr-${ANTLR_VERSION}-complete.jar "$@"' > $HOME/travis-bin/antlr
|
|
- echo -e '#!/bin/bash\njava org.antlr.v4.gui.TestRig "$@"' > $HOME/travis-bin/grun
|
|
- chmod +x $HOME/travis-bin/*
|
|
- export PATH=$PATH:$HOME/travis-bin
|
|
- export GO111MODULE=on
|
|
- git reset --hard
|
|
|
|
stages:
|
|
- install
|
|
- lint
|
|
- compile
|
|
- test
|
|
- e2e
|
|
- bench
|
|
|
|
jobs:
|
|
include:
|
|
- stage: install
|
|
go: stable
|
|
script:
|
|
- make install
|
|
- stage: lint
|
|
go: stable
|
|
script:
|
|
- make vet
|
|
- make lint
|
|
- make fmt
|
|
- git diff
|
|
- if [[ $(git diff) != '' ]]; then echo 'Invalid formatting!' >&2; exit 1; fi
|
|
- stage: compile
|
|
go: stable
|
|
script:
|
|
- make generate
|
|
- make compile
|
|
- stage: test
|
|
script:
|
|
- make cover
|
|
- stage: e2e
|
|
go: stable
|
|
before_script:
|
|
- curl https://raw.githubusercontent.com/MontFerret/lab/master/install.sh -o install.sh
|
|
- sudo sh install.sh
|
|
- docker run -d -p 9222:9222 -e CHROME_OPTS='--disable-dev-shm-usage --full-memory-crash-report' alpeware/chrome-headless-stable:ver-83.0.4103.61
|
|
- docker ps
|
|
script:
|
|
- make compile
|
|
- make e2e
|
|
after_script:
|
|
- docker stop $(docker ps -q)
|
|
- stage: bench
|
|
go: stable
|
|
script:
|
|
- make bench
|