Skip to content
Closed
Show file tree
Hide file tree
Changes from 48 commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
c76c856
looking through noellas work
kwarraich Jun 12, 2025
aec4d04
more of what noella has done
kwarraich Jun 12, 2025
3ec7d93
fixed all the errors reguarding the cargo test
kwarraich Jun 12, 2025
c83ca8d
seperated out the test cases from lib.rs and then made adjustment so …
kwarraich Jun 12, 2025
aa81d20
added custom header case & muliple messages in seq case
kwarraich Jun 12, 2025
89596de
checks that the umessage is correctly parsed into the transmission da…
kwarraich Jun 12, 2025
fff54b7
tested sending w empty payload, no payload, and max size payload
kwarraich Jun 12, 2025
d97041c
included the multiple concurent messages
kwarraich Jun 12, 2025
ee5116f
adding all files so can merge into one shared fork
kwarraich Jun 13, 2025
7ee3b66
Merge pull request #1 from kwarraich/testing_send_reg_unreg
kwarraich Jun 13, 2025
a525b97
tests run and there are not issues anymore which prevent them from ru…
kwarraich Jun 23, 2025
b78e66f
Merge pull request #2 from uProtocol-cmu-team-Luna/fixingInitalErrors
kwarraich Jun 23, 2025
761c7d7
skeleton code for receiver testing
vidishac2004 Jun 27, 2025
2a4e050
receiver test with compilation errors
vidishac2004 Jun 29, 2025
2e2ba85
modifed send test cases for muli sends, implemented send(), written a…
catappreciationhours2 Jun 30, 2025
7c43ba4
modified compute service name to work correctly with the service name…
catappreciationhours2 Jul 2, 2025
b83872b
updated encode uuri segments to handle type and instance from id sepa…
catappreciationhours2 Jul 2, 2025
a77699f
receiver.rs detected by cargo test
vidishac2004 Jul 3, 2025
94ce300
test cases to verify conversion from uri to iceoryx2 addressing schem…
catappreciationhours2 Jul 3, 2025
32afab3
fixed logger error
vidishac2004 Jul 3, 2025
86439c6
feat: Implement listener registration and unregistration
arakabCL Jul 3, 2025
2c75b13
Merge remote-tracking branch 'origin/main' into receiver
vidishac2004 Jul 3, 2025
33f3303
mostly fixing the failing tests, only one test the wildcard is failin…
kwarraich Jul 4, 2025
8b8b170
creating it so that it sends and recives on seperate terminals
kwarraich Jul 4, 2025
5e79a23
Merge pull request #3 from uProtocol-cmu-team-Luna/twoTerminals
kwarraich Jul 8, 2025
418af5b
made the transmission data completely genetic
kwarraich Jul 8, 2025
6e8524c
adding a test case to make sure mockUListener works
kwarraich Jul 8, 2025
1a0d554
testing unregister in receiver
vidishac2004 Jul 8, 2025
ed4cb86
added a test case
kwarraich Jul 8, 2025
73456ff
adding some more tests and pushing the mockUListener into the test block
kwarraich Jul 10, 2025
3aa4582
fixed uuri wildcard logic and made RawBytes compatible with iceoryx2 …
catappreciationhours2 Jul 10, 2025
e36dc08
modified cargo.toml to make test-utils availale in dependencies
catappreciationhours2 Jul 10, 2025
bf2f608
these tests pass without wildcard URIs so replaced Uuri::any with the…
vidishac2004 Jul 10, 2025
2f2e4ee
adjusted so the ternimals would send the data and properly with the n…
kwarraich Jul 10, 2025
65768ab
adjusted teh reciving end so it would print in decimal
kwarraich Jul 10, 2025
fc0e8e4
Merge pull request #4 from uProtocol-cmu-team-Luna/makingTransmission…
arakabCL Jul 14, 2025
c3fa305
Merge branch 'main' into tests_without_wildcards
arakabCL Jul 14, 2025
49fe222
Merge pull request #5 from uProtocol-cmu-team-Luna/tests_without_wild…
arakabCL Jul 14, 2025
6aa08f6
Removed wildcard support from compute listener matching logic.
arakabCL Jul 14, 2025
f74cc6f
Completed wildcard removal from compute listener with tests.
arakabCL Jul 14, 2025
e367b19
Updated register with deserialized attributes handling
arakabCL Jul 14, 2025
533e034
Complete wildcard removal and listener functionality improvements
arakabCL Jul 14, 2025
d815582
Implement register_listener and unregister_listener functionality
arakabCL Jul 25, 2025
8e9b311
fixing workflow error
kwarraich Jul 28, 2025
4a491ca
Merge branch 'main' into listener-wildcard-removal-pr
kwarraich Jul 28, 2025
d33aab8
Update lib.rs
vidishac2004 Jul 29, 2025
84c6d60
Update lib.rs
kwarraich Jul 30, 2025
265fba1
Update src/lib.rs
vidishac2004 Jul 30, 2025
d453dec
Remove .DS_Store and add it to .gitignore
vidishac2004 Aug 2, 2025
9376043
removed rawbytes
kwarraich Aug 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Comment thread
PLeVasseur marked this conversation as resolved.
Outdated
Comment thread
PLeVasseur marked this conversation as resolved.
Outdated
Binary file not shown.
38 changes: 19 additions & 19 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: Rust Project CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build_and_test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Build
run: cargo build --verbose

- name: Run tests
name: Rust Project CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

missing EOL

2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/target
/target
Loading
Loading