mirror of
https://github.com/renovatebot/renovate.git
synced 2025-05-13 08:01:49 +00:00
100 lines
2.2 KiB
Text
100 lines
2.2 KiB
Text
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`modules/manager/helmfile/extract > extractPackageFile() > skip chart that does not have specified version 1`] = `
|
|
{
|
|
"datasource": "helm",
|
|
"deps": [
|
|
{
|
|
"depName": "example",
|
|
"skipReason": "invalid-version",
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`modules/manager/helmfile/extract > extractPackageFile() > skip chart with special character in the name 1`] = `
|
|
{
|
|
"datasource": "helm",
|
|
"deps": [
|
|
{
|
|
"currentValue": "1.0.0",
|
|
"depName": "example/example",
|
|
"registryUrls": [
|
|
"https://kiwigrid.github.io",
|
|
],
|
|
"skipReason": "unsupported-chart-type",
|
|
},
|
|
{
|
|
"currentValue": "1.0.0",
|
|
"depName": "example?example",
|
|
"registryUrls": [
|
|
"https://kiwigrid.github.io",
|
|
],
|
|
"skipReason": "unsupported-chart-type",
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`modules/manager/helmfile/extract > extractPackageFile() > skip chart with unknown repository 1`] = `
|
|
{
|
|
"datasource": "helm",
|
|
"deps": [
|
|
{
|
|
"currentValue": "1.0.0",
|
|
"depName": "example",
|
|
"registryUrls": [],
|
|
"skipReason": "unknown-registry",
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`modules/manager/helmfile/extract > extractPackageFile() > skip if repository details are not specified 1`] = `
|
|
{
|
|
"datasource": "helm",
|
|
"deps": [
|
|
{
|
|
"currentValue": "1.0.0",
|
|
"depName": "example",
|
|
"registryUrls": [],
|
|
"skipReason": "unknown-registry",
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`modules/manager/helmfile/extract > extractPackageFile() > skip local charts 1`] = `
|
|
{
|
|
"datasource": "helm",
|
|
"deps": [
|
|
{
|
|
"depName": "example",
|
|
"skipReason": "local-chart",
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`modules/manager/helmfile/extract > extractPackageFile() > skip templetized release with invalid characters 1`] = `
|
|
{
|
|
"datasource": "helm",
|
|
"deps": [
|
|
{
|
|
"currentValue": "1.0.0",
|
|
"depName": "!!!!--!",
|
|
"registryUrls": [
|
|
"https://charts.helm.sh/stable",
|
|
],
|
|
"skipReason": "unsupported-chart-type",
|
|
},
|
|
{
|
|
"currentValue": "1.0.0",
|
|
"depName": "example",
|
|
"registryUrls": [
|
|
"https://charts.helm.sh/stable",
|
|
],
|
|
},
|
|
],
|
|
}
|
|
`;
|