88b1719d32
Squashed commit: [8058e6aba] 1 error left [b0157b252] 2 errors [7fa494907] 4 errors [03139391e] 6 failures, 4 errors [7f017ea23] 12 errors [3e9ad758d] 0 failures, 13 errors [e24a3cb3e] 3 failures, 13 errors [6edcaa655] 4 failures 14 errors [9623bda57] 6 failures, 13 errors [04c35c995] 4 failed 22 errors [5f5335c15] 9 failures [9a33540e2] down to 20 failures [0e7b73b49] remove old tests [5cc6d11b7] fixup the resources [8c508d45a] some more progress [4acef3c3b] some more work [85cdb5d06] some ports cleanup [1987ac2ec] lint before unit [6fa221789] enable unit tests [c212b695d] other name [b78594518] common test name fix [ef6597e79] indent [8cbcfb5e4] common test rename [1ca838c16] seperate common tests [ef052b022] create two seperate job for common testing [67eb0e9b3] use devcontainer for release shizzle [0c47c482b] make it a sudo [4d8900b16] force install jq [9660cdd47] try something else [e2b611917] bump common to run tests (to fix them) [277241bbf] only use the new devcontainer for the release tests for now... [9c7b68e0f] Revert "remove setup chart testing action" This reverts commit 6987914587a58ab5a52a05b836d60ef91f1619d5. [444914311] Revert "use integrated k3d" This reverts commit d9bcb2f35d154b0afe1eb851729c37789b6ba0ea. (+6 squashed commit) Squashed commit: [313446184] Revert "correct k3s version" This reverts commit 81fa8a43c41c2449b7411e0d59a3c2bbe0aef1ea. [41b4d4795] Revert "version name tryout" This reverts commit bbb8dcead9f9426872390b8f89b1fd0e661534bb. [b64df97a0] Revert "change version" This reverts commit 8080395dc80e606769ad9790b35d35fac4d1d3ed. [ed63220d4] Revert "use k3s kubectl" This reverts commit ea81735d939e838ad595835ea09b54bff817dd83. [6267a2908] Revert "use normal kubectl" This reverts commit 216d3799111d47f65dd20dd85ccb8fbc586a9c2b. [f48ddde73] Revert "try to set kubectl context" This reverts commit a5e8a532c5620e0d9d4cb7a53a371ba200265612. [a5e8a532c] try to set kubectl context [216d37991] use normal kubectl [ea81735d9] use k3s kubectl [8080395dc] change version [bbb8dcead] version name tryout [81fa8a43c] correct k3s version [d9bcb2f35] use integrated k3d [698791458] remove setup chart testing action [5bd7cf01d] bump common-test
241 lines
6.9 KiB
Ruby
241 lines
6.9 KiB
Ruby
# frozen_string_literal: true
|
|
require_relative '../../test_helper'
|
|
|
|
class Test < ChartTest
|
|
@@chart = Chart.new('charts/library/common-test')
|
|
|
|
describe @@chart.name do
|
|
describe 'ingress' do
|
|
baseValues = {
|
|
ingress: {
|
|
main: {
|
|
enabled: true
|
|
}
|
|
},
|
|
service: {
|
|
main: {
|
|
ports: {
|
|
http: {
|
|
port: 8080
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
it 'disabled when ingress.main.enabled: false' do
|
|
values = baseValues.deep_merge_override({
|
|
ingress: {
|
|
main: {
|
|
enabled: false
|
|
}
|
|
}
|
|
})
|
|
chart.value values
|
|
|
|
assert_nil(resource('Ingress'))
|
|
end
|
|
|
|
it 'enabled when ingress.main.enabled: true' do
|
|
values = baseValues
|
|
chart.value values
|
|
|
|
refute_nil(resource('Ingress'))
|
|
end
|
|
|
|
it 'tls can be provided' do
|
|
expectedPath = 'common-test.path'
|
|
values = baseValues.deep_merge_override({
|
|
ingress: {
|
|
main: {
|
|
tls: [
|
|
{
|
|
hosts: [ 'hostname' ],
|
|
secretName: 'secret-name'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
})
|
|
chart.value values
|
|
|
|
ingress = chart.resources(kind: "Ingress").find{ |s| s["metadata"]["name"] == "common-test" }
|
|
refute_nil(ingress)
|
|
assert_equal(values[:ingress][:main][:tls][0][:hosts][0], ingress["spec"]["tls"][0]["hosts"][0])
|
|
assert_equal(values[:ingress][:main][:tls][0][:secretName], ingress["spec"]["tls"][0]["secretName"])
|
|
end
|
|
|
|
it 'tls secret can be left empty' do
|
|
expectedPath = 'common-test.path'
|
|
values = baseValues.deep_merge_override({
|
|
ingress: {
|
|
main:{
|
|
tls: [
|
|
{
|
|
hosts: [ 'hostname' ]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
})
|
|
chart.value values
|
|
|
|
ingress = chart.resources(kind: "Ingress").find{ |s| s["metadata"]["name"] == "common-test" }
|
|
refute_nil(ingress)
|
|
assert_equal(values[:ingress][:main][:tls][0][:hosts][0], ingress["spec"]["tls"][0]["hosts"][0])
|
|
assert_equal(false, ingress["spec"]["tls"][0].key?("secretName"))
|
|
assert_nil(ingress["spec"]["tls"][0]["secretName"])
|
|
end
|
|
|
|
it 'tls secret template can be provided' do
|
|
expectedPath = 'common-test.path'
|
|
values = baseValues.deep_merge_override({
|
|
ingress: {
|
|
main: {
|
|
tls: [
|
|
{
|
|
secretName: '{{ .Release.Name }}-secret'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
})
|
|
chart.value values
|
|
|
|
ingress = chart.resources(kind: "Ingress").find{ |s| s["metadata"]["name"] == "common-test" }
|
|
refute_nil(ingress)
|
|
assert_equal('common-test-secret', ingress["spec"]["tls"][0]["secretName"])
|
|
end
|
|
|
|
it 'path template can be provided' do
|
|
expectedPath = 'common-test.path'
|
|
values = baseValues.deep_merge_override({
|
|
ingress: {
|
|
main: {
|
|
hosts: [
|
|
{
|
|
host: 'test.local',
|
|
paths: [
|
|
{
|
|
path: '{{ .Release.Name }}.path'
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
})
|
|
chart.value values
|
|
|
|
ingress = chart.resources(kind: "Ingress").find{ |s| s["metadata"]["name"] == "common-test" }
|
|
refute_nil(ingress)
|
|
assert_equal(expectedPath, ingress["spec"]["rules"][0]["http"]["paths"][0]["path"])
|
|
end
|
|
|
|
it 'hosts can be provided' do
|
|
values = baseValues.deep_merge_override({
|
|
ingress: {
|
|
main: {
|
|
hosts: [
|
|
{
|
|
host: 'hostname',
|
|
paths: [
|
|
{
|
|
path: "/"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
})
|
|
chart.value values
|
|
|
|
ingress = chart.resources(kind: "Ingress").find{ |s| s["metadata"]["name"] == "common-test" }
|
|
refute_nil(ingress)
|
|
assert_equal(values[:ingress][:main][:hosts][0][:host], ingress["spec"]["rules"][0]["host"])
|
|
end
|
|
|
|
it 'hosts template can be provided' do
|
|
expectedHostName = 'common-test.hostname'
|
|
values = baseValues.deep_merge_override({
|
|
ingress: {
|
|
main: {
|
|
hosts: [
|
|
{
|
|
host: '{{ .Release.Name }}.hostname',
|
|
paths: [
|
|
{
|
|
path: "/"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
})
|
|
chart.value values
|
|
|
|
ingress = chart.resources(kind: "Ingress").find{ |s| s["metadata"]["name"] == "common-test" }
|
|
refute_nil(ingress)
|
|
assert_equal(expectedHostName, ingress["spec"]["rules"][0]["host"])
|
|
end
|
|
|
|
it 'custom service name / port can optionally be set on path level' do
|
|
values = baseValues.deep_merge_override({
|
|
ingress: {
|
|
main: {
|
|
hosts: [
|
|
{
|
|
host: 'test.local',
|
|
paths: [
|
|
{
|
|
path: '/'
|
|
},
|
|
{
|
|
path: '/second',
|
|
service: {
|
|
name: 'pathService',
|
|
port: 1234
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
})
|
|
chart.value values
|
|
|
|
ingress = chart.resources(kind: "Ingress").find{ |s| s["metadata"]["name"] == "common-test" }
|
|
firstPath = ingress["spec"]["rules"][0]["http"]["paths"][0]
|
|
secondPath = ingress["spec"]["rules"][0]["http"]["paths"][1]
|
|
assert_equal("common-test", firstPath["backend"]["service"]["name"])
|
|
assert_equal(8080, firstPath["backend"]["service"]["port"]["number"])
|
|
assert_equal("pathService", secondPath["backend"]["service"]["name"])
|
|
assert_equal(1234, secondPath["backend"]["service"]["port"]["number"])
|
|
end
|
|
|
|
it 'multiple ingress objects can be specified' do
|
|
values = baseValues.deep_merge_override({
|
|
ingress: {
|
|
main: {
|
|
enabled: true,
|
|
primary: true
|
|
},
|
|
secondary: {
|
|
enabled: true
|
|
}
|
|
}
|
|
})
|
|
chart.value values
|
|
|
|
ingressMain = chart.resources(kind: "Ingress").find{ |s| s["metadata"]["name"] == "common-test" }
|
|
ingressExtra = chart.resources(kind: "Ingress").find{ |s| s["metadata"]["name"] == "common-test-secondary" }
|
|
refute_nil(ingressMain)
|
|
refute_nil(ingressExtra)
|
|
end
|
|
end
|
|
end
|
|
end
|