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

Integration Testing Foundations #105

Closed
wants to merge 41 commits into from
Closed
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
0d34715
WIP: util mod enhancement; cass-op cleaner changes
jeffbanks Dec 1, 2020
937789b
Dead code removal
jeffbanks Dec 1, 2020
d15f2ab
Model updates, preconditions and cass-cluster setup
jeffbanks Dec 1, 2020
cbda4d0
Enable operator setup
jeffbanks Dec 1, 2020
b4dac29
Addition of private help install functions
jeffbanks Dec 1, 2020
a30f1df
Merge branch 'main' of https://github.com/k8ssandra/k8ssandra into op…
jeffbanks Dec 2, 2020
a79e8f7
Operator integration w/ cass-cluster; util operations
jeffbanks Dec 6, 2020
f90a29d
Omega matchers, Ginkgo BDD additions; util ops
jeffbanks Dec 8, 2020
0881f2e
Added IsLabeledPodExisting function for integration reuse
jeffbanks Dec 8, 2020
70cc352
Created separation for integration specific packages
jeffbanks Dec 8, 2020
39c7297
Addresses basic warnings for unused ctx refs
jeffbanks Dec 8, 2020
49b8812
Defensive coding for empty conditions; addeded cleanup verify
jeffbanks Dec 9, 2020
725090f
Updated for overview of testing (unit and integration).
jeffbanks Dec 9, 2020
a2e592f
PR feedback; network traefik support; args cmd in ctx
jeffbanks Dec 10, 2020
a7d8e3d
Merge branch 'main' of https://github.com/k8ssandra/k8ssandra into op…
jeffbanks Dec 14, 2020
5fb7a58
Integration preconditions and customizations
jeffbanks Jan 5, 2021
f548473
Overview of PR Updates:
jeffbanks Jan 7, 2021
8a08ab9
Wait to fail upon error/timeout
jeffbanks Jan 7, 2021
c6c9922
Lengthen cass-cluster setup check to support 4m+
jeffbanks Jan 7, 2021
b9b7a87
Fixes incorrect equality target check
jeffbanks Jan 7, 2021
50d85fd
Merge branch 'main' of https://github.com/k8ssandra/k8ssandra into op…
jeffbanks Jan 18, 2021
6ce42e0
Single chart refactoring; kind cluster management
jeffbanks Jan 19, 2021
c298759
Single chart refactoring
jeffbanks Jan 19, 2021
7e57fe3
Renamed for single chart identity
jeffbanks Jan 19, 2021
925e948
Support for specifying c* 4.x
jeffbanks Jan 19, 2021
f4890ba
Single chart refactoring
jeffbanks Jan 19, 2021
f0b27cd
Merge branch 'main' of https://github.com/k8ssandra/k8ssandra into op…
jeffbanks Jan 20, 2021
f197b40
Update with main.
jeffbanks Feb 1, 2021
abf4a86
Update with main.
jeffbanks Feb 1, 2021
9b7465b
Update with main.
jeffbanks Feb 1, 2021
e78fda0
Update with main.
jeffbanks Feb 1, 2021
3940f6c
Merge branch 'main' of https://github.com/k8ssandra/k8ssandra into op…
jeffbanks Feb 4, 2021
2a50d81
Merge branch 'main' of https://github.com/k8ssandra/k8ssandra into op…
jeffbanks Feb 9, 2021
15926dc
Merge main
jeffbanks Feb 11, 2021
5531b2c
terratest v0.32.4
jeffbanks Feb 11, 2021
4252f65
Merge branch 'main' of https://github.com/k8ssandra/k8ssandra into op…
jeffbanks Feb 12, 2021
876d620
Merge branch 'main' of https://github.com/k8ssandra/k8ssandra into op…
jeffbanks Feb 18, 2021
d6a9e9a
Merge branch 'main' of https://github.com/k8ssandra/k8ssandra into op…
jeffbanks Mar 1, 2021
5b836ae
Precondition config updates
jeffbanks Mar 1, 2021
75de15f
Operator integration cleanup
jeffbanks Mar 2, 2021
3a455b5
Merge branch 'main' of https://github.com/k8ssandra/k8ssandra into op…
jeffbanks Mar 2, 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
14 changes: 14 additions & 0 deletions tests/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module github.com/k8ssandra/k8ssandra/tests

go 1.15

require (
github.com/gruntwork-io/terratest v0.30.23
github.com/stretchr/testify v1.6.1
k8s.io/api v0.19.3
k8s.io/apimachinery v0.19.3
sigs.k8s.io/yaml v1.2.0

)

replace github.com/k8ssandra/k8ssandra/tests/integration/util => ./integration/util
Loading