-
Notifications
You must be signed in to change notification settings - Fork 27
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
Elemental validation and improvements when using SL Micro 6.0 #549
Merged
Merged
Changes from 9 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
487f9ef
elemental validation and SL Micro 6.0 handling improvements
dbw7 7030979
add note to docs
dbw7 0da7b18
fixes for linter
dbw7 50ad797
feedback updates
dbw7 e4cbb6e
Merge branch 'main' into elemental-sl-micro-6
dbw7 04e9a65
Update pkg/image/validation/elemental.go
dbw7 97b862d
Update pkg/image/validation/elemental.go
dbw7 be79636
feedback updates
dbw7 d73a33d
Merge branch 'main' into elemental-sl-micro-6
dbw7 dc86fa5
last changes
dbw7 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
package validation | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"path/filepath" | ||
|
||
"github.com/suse-edge/edge-image-builder/pkg/image" | ||
) | ||
|
||
const ( | ||
elementalComponent = "Elemental" | ||
elementalConfigFilename = "elemental_config.yaml" | ||
) | ||
|
||
func validateElemental(ctx *image.Context) []FailedValidation { | ||
var failures []FailedValidation | ||
|
||
elementalConfigDir := filepath.Join(ctx.ImageConfigDir, "elemental") | ||
if _, err := os.Stat(elementalConfigDir); err != nil { | ||
if os.IsNotExist(err) { | ||
return nil | ||
} | ||
|
||
failures = append(failures, FailedValidation{ | ||
UserMessage: "Elemental config directory could not be read", | ||
Error: err, | ||
}) | ||
return failures | ||
} | ||
|
||
failures = append(failures, validateElementalDir(elementalConfigDir)...) | ||
|
||
if ctx.ImageDefinition.OperatingSystem.Packages.RegCode == "" { | ||
failures = append(failures, FailedValidation{ | ||
UserMessage: "Operating system package registration code field must be defined when using Elemental with SL Micro 6.0", | ||
}) | ||
} | ||
|
||
return failures | ||
} | ||
|
||
func validateElementalDir(elementalConfigDir string) []FailedValidation { | ||
var failures []FailedValidation | ||
|
||
elementalConfigDirEntries, err := os.ReadDir(elementalConfigDir) | ||
if err != nil { | ||
failures = append(failures, FailedValidation{ | ||
atanasdinov marked this conversation as resolved.
Show resolved
Hide resolved
|
||
UserMessage: "Elemental config directory could not be read", | ||
Error: err, | ||
}) | ||
|
||
return failures | ||
} | ||
|
||
switch len(elementalConfigDirEntries) { | ||
case 0: | ||
failures = append(failures, FailedValidation{ | ||
UserMessage: "Elemental config directory should not be present if it is empty", | ||
}) | ||
case 1: | ||
if elementalConfigDirEntries[0].Name() != elementalConfigFilename { | ||
failures = append(failures, FailedValidation{ | ||
UserMessage: fmt.Sprintf("Elemental config file should only be named `%s`", elementalConfigFilename), | ||
}) | ||
} | ||
default: | ||
failures = append(failures, FailedValidation{ | ||
UserMessage: fmt.Sprintf("Elemental config directory should only contain a singular '%s' file", elementalConfigFilename), | ||
}) | ||
} | ||
|
||
return failures | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
package validation | ||
|
||
import ( | ||
"os" | ||
"path/filepath" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
"github.com/stretchr/testify/require" | ||
"github.com/suse-edge/edge-image-builder/pkg/image" | ||
) | ||
|
||
func TestValidateElementalNoDir(t *testing.T) { | ||
ctx := image.Context{} | ||
|
||
failures := validateElemental(&ctx) | ||
assert.Len(t, failures, 0) | ||
} | ||
|
||
func TestValidateElementalValid(t *testing.T) { | ||
configDir, err := os.MkdirTemp("", "eib-config-") | ||
require.NoError(t, err) | ||
|
||
defer func() { | ||
assert.NoError(t, os.RemoveAll(configDir)) | ||
}() | ||
|
||
elementalDir := filepath.Join(configDir, "elemental") | ||
require.NoError(t, os.MkdirAll(elementalDir, os.ModePerm)) | ||
|
||
validElementalConfig := filepath.Join(elementalDir, "elemental_config.yaml") | ||
require.NoError(t, os.WriteFile(validElementalConfig, []byte(""), 0o600)) | ||
|
||
tests := map[string]struct { | ||
ImageDefinition *image.Definition | ||
ExpectedFailedMessages []string | ||
}{ | ||
`valid`: { | ||
ImageDefinition: &image.Definition{ | ||
OperatingSystem: image.OperatingSystem{ | ||
Packages: image.Packages{ | ||
RegCode: "registration-code", | ||
}, | ||
}, | ||
}, | ||
}, | ||
`no registration code`: { | ||
ImageDefinition: &image.Definition{}, | ||
ExpectedFailedMessages: []string{ | ||
"Operating system package registration code field must be defined when using Elemental with SL Micro 6.0", | ||
}, | ||
}, | ||
} | ||
|
||
for name, test := range tests { | ||
t.Run(name, func(t *testing.T) { | ||
ctx := image.Context{ | ||
ImageConfigDir: configDir, | ||
ImageDefinition: test.ImageDefinition, | ||
} | ||
failures := validateElemental(&ctx) | ||
assert.Len(t, failures, len(test.ExpectedFailedMessages)) | ||
|
||
var foundMessages []string | ||
for _, foundValidation := range failures { | ||
foundMessages = append(foundMessages, foundValidation.UserMessage) | ||
} | ||
|
||
for _, expectedMessage := range test.ExpectedFailedMessages { | ||
assert.Contains(t, foundMessages, expectedMessage) | ||
} | ||
|
||
}) | ||
} | ||
} | ||
|
||
func TestValidateElementalConfigDirValid(t *testing.T) { | ||
configDir, err := os.MkdirTemp("", "eib-config-") | ||
require.NoError(t, err) | ||
|
||
defer func() { | ||
assert.NoError(t, os.RemoveAll(configDir)) | ||
}() | ||
|
||
elementalDir := filepath.Join(configDir, "elemental") | ||
require.NoError(t, os.MkdirAll(elementalDir, os.ModePerm)) | ||
|
||
elementalConfig := filepath.Join(elementalDir, "elemental_config.yaml") | ||
require.NoError(t, os.WriteFile(elementalConfig, []byte(""), 0o600)) | ||
|
||
failures := validateElementalDir(elementalDir) | ||
assert.Len(t, failures, 0) | ||
} | ||
|
||
func TestValidateElementalConfigDirEmptyDir(t *testing.T) { | ||
configDir, err := os.MkdirTemp("", "eib-config-") | ||
require.NoError(t, err) | ||
|
||
defer func() { | ||
assert.NoError(t, os.RemoveAll(configDir)) | ||
}() | ||
|
||
elementalDir := filepath.Join(configDir, "elemental") | ||
require.NoError(t, os.MkdirAll(elementalDir, os.ModePerm)) | ||
|
||
failures := validateElementalDir(elementalDir) | ||
assert.Len(t, failures, 1) | ||
|
||
assert.Contains(t, failures[0].UserMessage, "Elemental config directory should not be present if it is empty") | ||
} | ||
|
||
func TestValidateElementalConfigDirMultipleFiles(t *testing.T) { | ||
configDir, err := os.MkdirTemp("", "eib-config-") | ||
require.NoError(t, err) | ||
|
||
defer func() { | ||
assert.NoError(t, os.RemoveAll(configDir)) | ||
}() | ||
|
||
elementalDir := filepath.Join(configDir, "elemental") | ||
require.NoError(t, os.MkdirAll(elementalDir, os.ModePerm)) | ||
|
||
firstElementalConfig := filepath.Join(elementalDir, "elemental_config1.yaml") | ||
require.NoError(t, os.WriteFile(firstElementalConfig, []byte(""), 0o600)) | ||
secondElementalConfig := filepath.Join(elementalDir, "elemental_config2.yaml") | ||
require.NoError(t, os.WriteFile(secondElementalConfig, []byte(""), 0o600)) | ||
|
||
failures := validateElementalDir(elementalDir) | ||
assert.Len(t, failures, 1) | ||
|
||
assert.Contains(t, failures[0].UserMessage, "Elemental config directory should only contain a singular 'elemental_config.yaml' file") | ||
} | ||
|
||
func TestValidateElementalConfigDirUnreadable(t *testing.T) { | ||
configDir, err := os.MkdirTemp("", "eib-config-") | ||
require.NoError(t, err) | ||
|
||
defer func() { | ||
assert.NoError(t, os.RemoveAll(configDir)) | ||
}() | ||
|
||
elementalDir := filepath.Join(configDir, "elemental") | ||
require.NoError(t, os.MkdirAll(elementalDir, os.ModePerm)) | ||
require.NoError(t, os.Chmod(elementalDir, 0o333)) | ||
|
||
failures := validateElementalDir(elementalDir) | ||
assert.Len(t, failures, 1) | ||
|
||
assert.Contains(t, failures[0].UserMessage, "Elemental config directory could not be read") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we rephrase this and move it to the API section below?
Elemental configuration now requires a registration code in order to install the necessary RPMs from the official sources
or something similar.