-
Notifications
You must be signed in to change notification settings - Fork 18
NOISSUE - Add wasm http url #169
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
Open
JeffMboya
wants to merge
11
commits into
absmach:main
Choose a base branch
from
JeffMboya:feat/wasm-http-url
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 5 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
927b509
feat(task): add wasm_http_url field to task and manager dispatch
JeffMboya d8e9a61
feat(storage): add wasm_http_url column to postgres and sqlite task r…
JeffMboya eb9509c
feat(proplet): fetch wasm binary from plain HTTP URL
JeffMboya ce807b2
fix(sdk): gofmt formatting for Task struct
JeffMboya 029f411
fix(proplet): cargo fmt formatting
JeffMboya 977520e
refactor(task): detect HTTP delivery via image_url scheme instead of …
JeffMboya 058d058
feat(proplet): route http/https image_url to HTTP fetch instead of re…
JeffMboya 55dbbb4
fix(proplet): cargo fmt formatting
JeffMboya a95befd
fix(ci): fix gci import formatting and remove duplicate Rust definitions
JeffMboya f0f087c
fix(ci): fix gci import ordering in postgres and sqlite init files
JeffMboya e645fe1
fix(ci): fix rustfmt formatting in types.rs
JeffMboya 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
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,59 @@ | ||
| package sqlite_test | ||
|
|
||
| import ( | ||
| "context" | ||
| "testing" | ||
| "time" | ||
|
|
||
| "github.com/absmach/propeller/pkg/storage/sqlite" | ||
| "github.com/absmach/propeller/pkg/task" | ||
| "github.com/google/uuid" | ||
| "github.com/stretchr/testify/assert" | ||
| "github.com/stretchr/testify/require" | ||
| ) | ||
|
|
||
| func TestTaskCreate_WithWasmHTTPURL(t *testing.T) { | ||
| t.Parallel() | ||
| repo := sqlite.NewTaskRepository(newTestDB(t)) | ||
|
|
||
| url := "http://example.com/module.wasm" | ||
| tk := task.Task{ | ||
| ID: uuid.NewString(), | ||
| Name: "http-wasm-task", | ||
| State: task.Pending, | ||
| WasmHTTPURL: url, | ||
| CreatedAt: time.Now().UTC().Truncate(time.Second), | ||
| UpdatedAt: time.Now().UTC().Truncate(time.Second), | ||
| } | ||
|
|
||
| created, err := repo.Create(context.Background(), tk) | ||
| require.NoError(t, err) | ||
| assert.Equal(t, tk.ID, created.ID) | ||
| assert.Equal(t, url, created.WasmHTTPURL) | ||
|
|
||
| fetched, err := repo.Get(context.Background(), tk.ID) | ||
| require.NoError(t, err) | ||
| assert.Equal(t, url, fetched.WasmHTTPURL) | ||
| } | ||
|
|
||
| func TestTaskCreate_WasmHTTPURLNull(t *testing.T) { | ||
| t.Parallel() | ||
| repo := sqlite.NewTaskRepository(newTestDB(t)) | ||
|
|
||
| tk := task.Task{ | ||
| ID: uuid.NewString(), | ||
| Name: "no-http-url-task", | ||
| State: task.Pending, | ||
| ImageURL: "oci://example.com/image:latest", | ||
| CreatedAt: time.Now().UTC().Truncate(time.Second), | ||
| UpdatedAt: time.Now().UTC().Truncate(time.Second), | ||
| } | ||
|
|
||
| created, err := repo.Create(context.Background(), tk) | ||
| require.NoError(t, err) | ||
| assert.Empty(t, created.WasmHTTPURL) | ||
|
|
||
| fetched, err := repo.Get(context.Background(), tk.ID) | ||
| require.NoError(t, err) | ||
| assert.Empty(t, fetched.WasmHTTPURL) | ||
| } |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
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.
Based on the image_url, can we identify if the wasm module is in a registry or not?
For example:
docker.io/rodneydav/addition.wasm-> registryhttps://propeller.absmach.eu/examples/addition.wasm-> Blob