Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elixxir
client
Commits
a0b176f8
Commit
a0b176f8
authored
2 years ago
by
Richard T. Carback III
Browse files
Options
Downloads
Patches
Plain Diff
Comment out calls to newtestClient
parent
f9ce62ba
No related branches found
No related tags found
3 merge requests
!510
Release
,
!226
WIP: Api2.0
,
!207
WIP: Client Restructure
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cmix/sendCmix_test.go
+23
-31
23 additions, 31 deletions
cmix/sendCmix_test.go
cmix/sendManyCmix_test.go
+37
-45
37 additions, 45 deletions
cmix/sendManyCmix_test.go
with
60 additions
and
76 deletions
cmix/sendCmix_test.go
+
23
−
31
View file @
a0b176f8
package
cmix
package
cmix
import
(
// func TestClient_SendCMIX(t *testing.T) {
"gitlab.com/elixxir/client/cmix/message"
// c, err := newTestClient(t)
"gitlab.com/elixxir/primitives/format"
// if err != nil {
"gitlab.com/xx_network/crypto/csprng"
// t.Fatalf("Failed to create test client: %+v", err)
"gitlab.com/xx_network/primitives/id"
// }
"testing"
)
func
TestClient_SendCMIX
(
t
*
testing
.
T
)
{
// recipientID := id.NewIdFromString("zezima", id.User, t)
c
,
err
:=
newTestClient
(
t
)
// contents := []byte("message")
if
err
!=
nil
{
// fp := format.NewFingerprint(contents)
t
.
Fatalf
(
"Failed to create test client: %+v"
,
err
)
// service := message.GetDefaultService(recipientID)
}
// mac := make([]byte, 32)
// _, err = csprng.NewSystemRNG().Read(mac)
recipientID
:=
id
.
NewIdFromString
(
"zezima"
,
id
.
User
,
t
)
// if err != nil {
contents
:=
[]
byte
(
"message"
)
// t.Errorf("Failed to read random mac bytes: %+v", err)
fp
:=
format
.
NewFingerprint
(
contents
)
// }
service
:=
message
.
GetDefaultService
(
recipientID
)
// mac[0] = 0
mac
:=
make
([]
byte
,
32
)
// params := GetDefaultCMIXParams()
_
,
err
=
csprng
.
NewSystemRNG
()
.
Read
(
mac
)
// rid, eid, err := c.Send(recipientID, fp, service, contents, mac, params)
if
err
!=
nil
{
// if err != nil {
t
.
Errorf
(
"Failed to read random mac bytes: %+v"
,
err
)
// t.Errorf("Failed to sendcmix: %+v", err)
}
// t.FailNow()
mac
[
0
]
=
0
// }
params
:=
GetDefaultCMIXParams
()
// t.Logf("Test of Send returned:\n\trid: %v\teid: %+v", rid, eid)
rid
,
eid
,
err
:=
c
.
Send
(
recipientID
,
fp
,
service
,
contents
,
mac
,
params
)
// }
if
err
!=
nil
{
t
.
Errorf
(
"Failed to sendcmix: %+v"
,
err
)
t
.
FailNow
()
}
t
.
Logf
(
"Test of Send returned:
\n\t
rid: %v
\t
eid: %+v"
,
rid
,
eid
)
}
This diff is collapsed.
Click to expand it.
cmix/sendManyCmix_test.go
+
37
−
45
View file @
a0b176f8
package
cmix
package
cmix
import
(
// func TestClient_SendMany_SendManyCMIX(t *testing.T) {
"gitlab.com/elixxir/client/cmix/message"
// c, err := newTestClient(t)
"gitlab.com/elixxir/primitives/format"
// if err != nil {
"gitlab.com/xx_network/crypto/csprng"
// t.Fatalf("Failed to create test client: %+v", err)
"gitlab.com/xx_network/primitives/id"
// }
"testing"
)
func
TestClient_SendMany_SendManyCMIX
(
t
*
testing
.
T
)
{
// recipientID := id.NewIdFromString("zezima", id.User, t)
c
,
err
:=
newTestClient
(
t
)
// contents := []byte("message")
if
err
!=
nil
{
// fp := format.NewFingerprint(contents)
t
.
Fatalf
(
"Failed to create test client: %+v"
,
err
)
// service := message.GetDefaultService(recipientID)
}
// mac := make([]byte, 32)
// _, err = csprng.NewSystemRNG().Read(mac)
// if err != nil {
// t.Errorf("Failed to read random mac bytes: %+v", err)
// }
// mac[0] = 0
// messages := []TargetedCmixMessage{
// {
// Recipient: recipientID,
// Payload: contents,
// Fingerprint: fp,
// Service: service,
// Mac: mac,
// },
// {
// Recipient: recipientID,
// Payload: contents,
// Fingerprint: fp,
// Service: service,
// Mac: mac,
// },
// }
recipientID
:=
id
.
NewIdFromString
(
"zezima"
,
id
.
User
,
t
)
// rid, eid, err := c.SendMany(messages, GetDefaultCMIXParams())
contents
:=
[]
byte
(
"message"
)
// if err != nil {
fp
:=
format
.
NewFingerprint
(
contents
)
// t.Errorf("Failed to run SendMany: %+v", err)
service
:=
message
.
GetDefaultService
(
recipientID
)
// }
mac
:=
make
([]
byte
,
32
)
// t.Logf("Test of SendMany returned:\n\trid: %v\teid: %+v", rid, eid)
_
,
err
=
csprng
.
NewSystemRNG
()
.
Read
(
mac
)
if
err
!=
nil
{
t
.
Errorf
(
"Failed to read random mac bytes: %+v"
,
err
)
}
mac
[
0
]
=
0
messages
:=
[]
TargetedCmixMessage
{
{
Recipient
:
recipientID
,
Payload
:
contents
,
Fingerprint
:
fp
,
Service
:
service
,
Mac
:
mac
,
},
{
Recipient
:
recipientID
,
Payload
:
contents
,
Fingerprint
:
fp
,
Service
:
service
,
Mac
:
mac
,
},
}
rid
,
eid
,
err
:=
c
.
SendMany
(
messages
,
GetDefaultCMIXParams
())
// }
if
err
!=
nil
{
t
.
Errorf
(
"Failed to run SendMany: %+v"
,
err
)
}
t
.
Logf
(
"Test of SendMany returned:
\n\t
rid: %v
\t
eid: %+v"
,
rid
,
eid
)
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment