-
Notifications
You must be signed in to change notification settings - Fork 39
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
Config File Handling #156
Merged
Merged
Config File Handling #156
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
092326d
feat: load config file
alex-kar 216cbe3
test: cover config file parser
alex-kar 648ea6e
fix: remove binary file
alex-kar 891bda2
add '--config' option to specify the path to configuration file
alex-kar d293e23
chore: formatting
alex-kar 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
package config | ||
|
||
import ( | ||
"os" | ||
"path/filepath" | ||
|
||
"gopkg.in/yaml.v3" | ||
) | ||
|
||
const cfgFile = ".iceberg-go.yaml" | ||
|
||
type Config struct { | ||
Catalogs map[string]CatalogConfig `yaml:"catalog"` | ||
} | ||
|
||
type CatalogConfig struct { | ||
Catalog string `yaml:"catalog"` | ||
URI string `yaml:"uri"` | ||
Output string `yaml:"output"` | ||
Credential string `yaml:"credential"` | ||
Warehouse string `yaml:"warehouse"` | ||
} | ||
|
||
func LoadConfig(configPath string) []byte { | ||
var path string | ||
if len(configPath) > 0 { | ||
path = configPath | ||
} else { | ||
homeDir, err := os.UserHomeDir() | ||
if err != nil { | ||
return nil | ||
|
||
} | ||
path = filepath.Join(homeDir, cfgFile) | ||
} | ||
file, err := os.ReadFile(path) | ||
if err != nil { | ||
return nil | ||
} | ||
return file | ||
} | ||
|
||
func ParseConfig(file []byte, catalogName string) *CatalogConfig { | ||
var config Config | ||
err := yaml.Unmarshal(file, &config) | ||
if err != nil { | ||
return nil | ||
} | ||
res, ok := config.Catalogs[catalogName] | ||
if !ok { | ||
return nil | ||
} | ||
return &res | ||
} |
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,85 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
package config | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
var testArgs = []struct { | ||
file []byte | ||
catName string | ||
expected *CatalogConfig | ||
}{ | ||
// config file does not exist | ||
{nil, "default", nil}, | ||
// config does not have default catalog | ||
{[]byte(` | ||
catalog: | ||
custom-catalog: | ||
catalog: rest | ||
uri: http://localhost:8181/ | ||
output: text | ||
credential: client-id:client-secret | ||
warehouse: catalog_name | ||
`), "default", nil}, | ||
// default catalog | ||
{[]byte(` | ||
catalog: | ||
default: | ||
catalog: rest | ||
uri: http://localhost:8181/ | ||
output: text | ||
credential: client-id:client-secret | ||
warehouse: catalog_name | ||
`), "default", | ||
&CatalogConfig{ | ||
Catalog: "rest", | ||
URI: "http://localhost:8181/", | ||
Output: "text", | ||
Credential: "client-id:client-secret", | ||
Warehouse: "catalog_name", | ||
}}, | ||
// custom catalog | ||
{[]byte(` | ||
catalog: | ||
custom-catalog: | ||
catalog: rest | ||
uri: http://localhost:8181/ | ||
output: text | ||
credential: client-id:client-secret | ||
warehouse: catalog_name | ||
`), "custom-catalog", | ||
&CatalogConfig{ | ||
Catalog: "rest", | ||
URI: "http://localhost:8181/", | ||
Output: "text", | ||
Credential: "client-id:client-secret", | ||
Warehouse: "catalog_name", | ||
}}, | ||
} | ||
|
||
func TestParseConfig(t *testing.T) { | ||
for _, tt := range testArgs { | ||
actual := ParseConfig([]byte(tt.file), tt.catName) | ||
|
||
assert.Equal(t, tt.expected, actual) | ||
} | ||
} |
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
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.
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.
should we probably add an option to specify the config file if they want something other than the default
.iceberg-go.yaml
?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.
@zeroshade I have added --config option to specify the path to the configuration file.