Page MenuHomePhabricator

[services/commtest] Adding of openssl, base64, anyhow to dependencies
ClosedPublic

Authored by max on Dec 19 2022, 6:14 AM.
Tags
None
Referenced Files
F3512087: D5926.diff
Sat, Dec 21, 6:03 PM
Unknown Object (File)
Wed, Dec 18, 6:17 PM
Unknown Object (File)
Wed, Dec 18, 6:17 PM
Unknown Object (File)
Wed, Dec 18, 10:59 AM
Unknown Object (File)
Mon, Dec 16, 4:04 AM
Unknown Object (File)
Nov 13 2024, 8:02 PM
Unknown Object (File)
Nov 13 2024, 5:19 AM
Unknown Object (File)
Nov 10 2024, 5:55 PM
Subscribers

Details

Summary

This diff adds the following Rust crate dependencies to the commtest API testing app:

  • OpenSSL: We need it to make a signature for the string by the private key (in D5927), and generate keys as well (D5931).
  • Base64: We are representing the signed string in a base64 to send it to the Tunnelbroker (in D5927).
  • Anyhow: To be flexible in error types returns in utility functions we should use an Anyhow error type (in D5929).
Test Plan

The commtest app is successfully built and the tests are successfully passed in the following D5931.

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

max held this revision as a draft.
max published this revision for review.Dec 19 2022, 7:00 AM
max edited the summary of this revision. (Show Details)
max edited the test plan for this revision. (Show Details)
max added a reviewer: varun. max added 1 blocking reviewer(s): jon.
This revision is now accepted and ready to land.Dec 20 2022, 9:52 AM
This revision now requires review to proceed.Dec 22 2022, 6:59 AM
This revision is now accepted and ready to land.Dec 22 2022, 8:01 AM
services/commtest/Cargo.toml
13 ↗(On Diff #19544)

Should this be "vendored" like D5998? Don't really understand the concept, just asking

services/commtest/Cargo.toml
13 ↗(On Diff #19544)

i think the "vendored" feature is only relevant for cross-compilation

services/commtest/Cargo.toml
13 ↗(On Diff #19544)

er, actually, after reading the summary of D5998 there might be a different reason i'm not aware of

max added inline comments.
services/commtest/Cargo.toml
13 ↗(On Diff #19544)

Should this be "vendored" like D5998? Don't really understand the concept, just asking

If the vendored Cargo feature is enabled, the openssl crate will be used to compile and statically link to a copy of OpenSSL. It fails to build native apps without it.

i think the "vendored" feature is only relevant for cross-compilation

Yes, it's related to the cross-compilation as well. The native lib doesn't build without it.