-
Notifications
You must be signed in to change notification settings - Fork 6
feat: Support loading environment variables from a file #178
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
+198
−5
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
1c9a57a
feat: Support loading environment variables from a file
dsarlis e5db1a3
Potential fix for pull request finding
mraszyk 3ae1977
Apply suggestions from code review
dsarlis becfcc0
Update canbench-bin/tests/tests.rs
dsarlis 80f615b
Review comments
dsarlis 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,6 @@ | ||
| build_cmd: cargo build --release --target wasm32-unknown-unknown --locked | ||
|
|
||
| wasm_path: ../../target/wasm32-unknown-unknown/release/environment_variables.wasm | ||
|
|
||
| env_vars: | ||
| file: environment_variables.csv |
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,3 @@ | ||
| name1,value1 with_more_text | ||
| name2, value2 | ||
| name3 ,value3 |
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,28 @@ | ||
| use canbench_rs::bench; | ||
| use ic_cdk::api::env_var_value; | ||
| use std::cell::RefCell; | ||
|
|
||
| thread_local! { | ||
| static STATE: RefCell<Vec<String>> = const { RefCell::new(Vec::new()) }; | ||
| } | ||
|
|
||
| // A benchmark that verifies the expected environment variable values were loaded. | ||
| #[bench] | ||
| fn state_check() { | ||
| let state = STATE.with(|s| s.borrow().clone()); | ||
| assert_eq!(state[0], "value1 with_more_text"); | ||
| assert_eq!(state[1], "value2"); | ||
| assert_eq!(state[2], "value3"); | ||
| } | ||
|
|
||
| #[ic_cdk::init] | ||
| pub fn init() { | ||
| STATE.with(|s| { | ||
| let mut state = s.borrow_mut(); | ||
| state.push(env_var_value("name1")); | ||
| state.push(env_var_value("name2")); | ||
| state.push(env_var_value("name3")); | ||
| }); | ||
| } | ||
|
|
||
| fn main() {} |
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,6 @@ | ||
| build_cmd: cargo build --release --target wasm32-unknown-unknown --locked | ||
|
|
||
| wasm_path: ../../target/wasm32-unknown-unknown/release/environment_variables_file_does_not_exist.wasm | ||
|
|
||
| env_vars: | ||
| file: environment_variables_file_does_not_exist.csv |
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 @@ | ||
| fn main() {} |
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,6 @@ | ||
| build_cmd: cargo build --release --target wasm32-unknown-unknown --locked | ||
|
|
||
| wasm_path: ../../target/wasm32-unknown-unknown/release/environment_variables_invalid.wasm | ||
|
|
||
| env_vars: | ||
| file: environment_variables_invalid.csv |
1 change: 1 addition & 0 deletions
1
tests/environment_variables_invalid/environment_variables_invalid.csv
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 @@ | ||
| name |
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 @@ | ||
| fn main() {} |
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.