-
Notifications
You must be signed in to change notification settings - Fork 3
feat(config): allow configurable image target URL patterns #128
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
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c83efac
feat(config): allow configurable image target URL patterns
rokuosan 6d0bc9c
chore(config): configure image target URL patterns
rokuosan 51e27f5
fix(config): preserve prefix matching for wildcard targets
rokuosan 5556b46
fix: preserve empty image targets and normalize target host matching
rokuosan 194eccc
fix: preserve empty image targets and normalize target URL matching
rokuosan 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,70 @@ | ||
| package config | ||
|
|
||
| import ( | ||
| "os" | ||
| "strings" | ||
| "testing" | ||
|
|
||
| "github.com/spf13/viper" | ||
| ) | ||
|
|
||
| func TestWriteAndReload_PreservesExplicitEmptyImageTargets(t *testing.T) { | ||
| tempDir := t.TempDir() | ||
|
|
||
| originalWd, err := os.Getwd() | ||
| if err != nil { | ||
| t.Fatalf("getwd: %v", err) | ||
| } | ||
| t.Cleanup(func() { | ||
| if err := os.Chdir(originalWd); err != nil { | ||
| t.Fatalf("restore wd: %v", err) | ||
| } | ||
| config = Config{} | ||
| viper.Reset() | ||
| }) | ||
|
|
||
| if err := os.Chdir(tempDir); err != nil { | ||
| t.Fatalf("chdir: %v", err) | ||
| } | ||
| config = Config{} | ||
| viper.Reset() | ||
|
|
||
| conf := Config{ | ||
| GitHub: NewGitHubConfig(), | ||
| Output: &OutputConfig{ | ||
| Articles: NewOutputArticlesConfig(), | ||
| Images: &OutputImagesConfig{ | ||
| Directory: "static/images", | ||
| Filename: "[:id].png", | ||
| BaseURL: Ptr("/images"), | ||
| Targets: []string{}, | ||
| }, | ||
| }, | ||
| } | ||
|
|
||
| if err := Write(conf); err != nil { | ||
| t.Fatalf("write: %v", err) | ||
| } | ||
|
|
||
| data, err := os.ReadFile(GetConfigPath()) | ||
| if err != nil { | ||
| t.Fatalf("read config: %v", err) | ||
| } | ||
| if !strings.Contains(string(data), "targets: []") { | ||
| t.Fatalf("expected explicit empty targets in config, got:\n%s", string(data)) | ||
| } | ||
|
|
||
| reloaded, err := Reload() | ||
| if err != nil { | ||
| t.Fatalf("reload: %v", err) | ||
| } | ||
| if reloaded.Output == nil || reloaded.Output.Images == nil { | ||
| t.Fatalf("missing output images after reload") | ||
| } | ||
| if reloaded.Output.Images.Targets == nil { | ||
| t.Fatalf("targets became nil after reload") | ||
| } | ||
| if len(reloaded.Output.Images.TargetURLs()) != 0 { | ||
| t.Fatalf("target urls = %#v", reloaded.Output.Images.TargetURLs()) | ||
| } | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.