Skip to content

Commit fd46f34

Browse files
authored
Consolidates acceptance tests. Exclude force_stop and migration tests for Macos. Closes #2497
1 parent 5abbcdb commit fd46f34

31 files changed

+1283
-1355
lines changed

.acceptance.goreleaser.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
before:
2+
hooks:
3+
- go mod tidy
4+
- go clean -testcache && go test -timeout 30s ./...
5+
builds:
6+
- env:
7+
- CGO_ENABLED=0
8+
- GO111MODULE=on
9+
goos:
10+
- linux
11+
- darwin
12+
goarch:
13+
- amd64
14+
15+
id: "steampipe"
16+
binary: "steampipe"
17+
18+
archives:
19+
- files:
20+
- none*
21+
format: zip
22+
id: homebrew
23+
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
24+
format_overrides:
25+
- goos: linux
26+
format: tar.gz

.github/workflows/test.yml

+31-18
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/setup-go@v3
2424
with:
2525
go-version: 1.19
26-
26+
2727
- name: Fetching Go Cache Paths
2828
id: go-cache-paths
2929
run: |
@@ -46,16 +46,11 @@ jobs:
4646
path: ${{ steps.go-cache-paths.outputs.go-mod }}
4747
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
4848

49-
- name: Run CLI Unit Tests
50-
run: |
51-
go clean -testcache
52-
go test -timeout 30s ./...
53-
5449
- name: Run GoReleaser
5550
uses: goreleaser/goreleaser-action@v3
5651
with:
5752
version: latest
58-
args: release --rm-dist --skip-publish
53+
args: release --rm-dist --snapshot --parallelism 2 --config=.acceptance.goreleaser.yml
5954
env:
6055
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6156

@@ -83,11 +78,30 @@ jobs:
8378
if-no-files-found: error
8479

8580
acceptance_test:
86-
name: Acceptance tests
81+
name: Test
8782
needs: goreleaser
8883
strategy:
84+
fail-fast: false
8985
matrix:
9086
platform: [macos-latest, ubuntu-latest]
87+
test_block:
88+
- "migration"
89+
- "service_and_plugin"
90+
- "search_path"
91+
- "chaos_and_query"
92+
- "dynamic_schema"
93+
- "cache"
94+
- "mod_install"
95+
- "mod"
96+
- "check"
97+
- "performance"
98+
- "exit_codes"
99+
- "force_stop"
100+
exclude:
101+
- platform: macos-latest
102+
test_block: migration
103+
- platform: macos-latest
104+
test_block: force_stop
91105
runs-on: ${{ matrix.platform }}
92106
steps:
93107
- name: Checkout
@@ -131,9 +145,11 @@ jobs:
131145
echo "PATH=$PATH:$HOME/build:$GTIHUB_WORKSPACE/tests/acceptance/lib/bats/libexec" >> $GITHUB_ENV
132146
133147
- name: Install DB
148+
id: install-db
134149
continue-on-error: false
135150
run: |
136151
steampipe service start
152+
steampipe plugin install chaos
137153
steampipe service stop
138154
139155
- name: Run Test Suite
@@ -142,19 +158,21 @@ jobs:
142158
continue-on-error: true
143159
run: |
144160
chmod +x $GITHUB_WORKSPACE/tests/acceptance/run.sh
145-
$GITHUB_WORKSPACE/tests/acceptance/run.sh
161+
$GITHUB_WORKSPACE/tests/acceptance/run.sh ${{ matrix.test_block }}.bats
146162
steampipe service stop --force
147-
163+
148164
- name: Save Test Suite Logs
149165
uses: actions/upload-artifact@v3
150166
with:
151167
name: test-logs
152168
path: ~/.steampipe/logs
153169
if-no-files-found: error
154-
170+
155171
# This job checks whether the test suite has passed or not.
156-
# Since the exit_code is set only when the bats test suite pass, so we have added the if-conditional block
172+
# Since the exit_code is set only when the bats test suite pass,
173+
# we have added the if-conditional block
157174
- name: Check Test Passed/Failed
175+
if: ${{ success() }}
158176
continue-on-error: false
159177
run: |
160178
if [ ${{ steps.run-test-suite.outputs.exit_code }} -eq 0 ]; then
@@ -171,6 +189,7 @@ jobs:
171189
# https://docs.github.com/en/actions/configuring-and-managing-workflows/persisting-workflow-data-using-artifacts#downloading-and-deleting-artifacts-after-a-workflow-run-is-complete
172190
name: Clean Up Artifacts
173191
needs: acceptance_test
192+
if: ${{ needs.acceptance_test.result == 'success' }}
174193
runs-on: ubuntu-latest
175194
steps:
176195
- name: Clean up Linux Build
@@ -185,12 +204,6 @@ jobs:
185204
name: build-artifact-darwin
186205
failOnError: true
187206

188-
- name: Clean up Test Suite
189-
uses: geekyeggo/delete-artifact@v1
190-
with:
191-
name: test-artifact
192-
failOnError: true
193-
194207
- name: Clean up Test Suite Logs
195208
uses: geekyeggo/delete-artifact@v1
196209
with:

tests/acceptance/run.sh

+6-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,12 @@ fi
5656

5757
echo "Running with STEAMPIPE_INSTALL_DIR set to $STEAMPIPE_INSTALL_DIR"
5858

59-
bats --tap $MY_PATH/test_files
59+
if [ $# -eq 0 ]; then
60+
# Run all test files
61+
bats --tap $MY_PATH/test_files
62+
else
63+
bats --tap $MY_PATH/test_files/${1}
64+
fi
6065

6166
# Setting the exit_code, to use in the github workflow(This only gets set to 0 when the above bats test suite passes)
6267
echo "::set-output name=exit_code::$(echo $?)"

tests/acceptance/test_files/001.basics.bats

-89
This file was deleted.

tests/acceptance/test_files/002.service.bats

-109
This file was deleted.

0 commit comments

Comments
 (0)