Skip to content

MCC-1365296 rewrite as java wrapper #34

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

Draft
wants to merge 45 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
6d6b8c9
Add simple Java wrapper
colinphill-mdsol Jun 13, 2024
1b40a81
Add mauth test suite as submodule
colinphill-mdsol May 16, 2025
09815b0
Formatting
colinphill-mdsol May 16, 2025
3d607f6
Remove AOT uberjar
colinphill-mdsol May 16, 2025
f036e00
Add enterprise maven repository
colinphill-mdsol May 16, 2025
2e6068b
Add clj-kondo config
colinphill-mdsol May 16, 2025
cefd645
Rename ns to match other lib conventions
colinphill-mdsol May 16, 2025
df29dcd
Add docstrings
colinphill-mdsol May 16, 2025
85d2726
Formatting
colinphill-mdsol May 16, 2025
571ab78
Add suite-based tests
colinphill-mdsol May 16, 2025
351da5b
Major version bump
colinphill-mdsol May 14, 2025
2ff00fd
Formatting
colinphill-mdsol May 14, 2025
acc2d5c
Move test dep to test profile
colinphill-mdsol May 14, 2025
71e6bd1
Change alias in test
colinphill-mdsol May 14, 2025
dd9b84e
Add warn-on-reflection
colinphill-mdsol May 14, 2025
6c5788a
Extract conversions to separate namespace
colinphill-mdsol May 14, 2025
a22f479
Add authenticator
colinphill-mdsol May 15, 2025
d136dee
Remove outdated comment
colinphill-mdsol May 15, 2025
57f0016
Add v1 test cases
colinphill-mdsol May 15, 2025
7afae94
Add humane-test-output
colinphill-mdsol May 15, 2025
12c0e7c
Add middleware test
colinphill-mdsol May 15, 2025
c48ef47
Remove RCF
colinphill-mdsol May 15, 2025
b4c0322
Add/revise docstrings
colinphill-mdsol May 15, 2025
f44e936
Add warn-on-reflection
colinphill-mdsol May 15, 2025
4b6023d
Remove print statement
colinphill-mdsol May 15, 2025
8aa39d4
Add server middleware with simple test case
colinphill-mdsol May 15, 2025
0137344
Deduplicate test code
colinphill-mdsol May 15, 2025
87a9e50
Add negative test case for server middleware
colinphill-mdsol May 15, 2025
471c68a
Prove that on-auth-failure receives request
colinphill-mdsol May 15, 2025
340ac5c
Assert nil exception on valid=false
colinphill-mdsol May 15, 2025
0a93f26
Prove that on-auth-failure receives exception
colinphill-mdsol May 15, 2025
13c3218
Change on-auth-failure to accept a map
colinphill-mdsol May 15, 2025
0f3df05
Add javadoc
colinphill-mdsol May 15, 2025
a65a47a
Use exception message for response body
colinphill-mdsol May 15, 2025
2b57309
Add test for default message on auth failure
colinphill-mdsol May 15, 2025
a971e2a
Remove unused dependency
colinphill-mdsol May 15, 2025
ace2029
Fix MD rendering of docstring
colinphill-mdsol May 15, 2025
d4329ec
Fix MD rendering of docstring
colinphill-mdsol May 15, 2025
fa52414
Refactor to expose MAuth data
colinphill-mdsol May 16, 2025
61b01cd
Remove submodule config
colinphill-mdsol May 16, 2025
a3a7314
Vendor mauth test suite
colinphill-mdsol May 16, 2025
6e33cfd
Add alpha1 qualifier to version
colinphill-mdsol May 16, 2025
3fb4f91
Reduce mauth dep version
colinphill-mdsol May 16, 2025
27ebe4a
Match error message in test to v17
colinphill-mdsol May 16, 2025
0314b0b
Report additional errors as auth fail
colinphill-mdsol May 16, 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
28 changes: 28 additions & 0 deletions .clj-kondo/config.edn
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{:linters {:aliased-namespace-symbol {:level :warning}
:case-symbol-test {:level :warning}
:condition-always-true {:level :warning}
:bb.edn-task-missing-docstring {:level :warning}
:docstring-no-summary {:level :warning}
:docstring-leading-trailing-whitespace {:level :warning}
:dynamic-var-not-earmuffed {:level :warning}
:equals-false {:level :warning}
:equals-true {:level :warning}
:def-fn {:level :warning}
:reduce-without-init {:level :warning}
:keyword-binding {:level :warning}
:main-without-gen-class {:level :error}
:minus-one {:level :warning}
:missing-docstring {:level :warning}
:plus-one {:level :warning}
:redundant-fn-wrapper {:level :warning}
:redundant-call {:level :warning}
:refer {:level :warning
:exclude [clojure.test]}
:single-key-in {:level :warning}
:shadowed-var {:level :warning}
:unused-alias {:level :warning}
:used-underscored-binding {:level :warning}
:unsorted-imports {:level :warning}
:unsorted-required-namespaces {:level :warning}
:warn-on-reflection {:level :warning}
:unresolved-namespace {:level :warning}}}
1 change: 1 addition & 0 deletions mauth-protocol-test-suite/.version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.2.0
12 changes: 12 additions & 0 deletions mauth-protocol-test-suite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# 0.2.0
* Add MWS(V1) test suite.

# 0.1.2
* Use valid UTF-8 codes in `get-vanilla-query-param-key-ordering`.

# 0.1.1
* Fix query param ordering in case `post-vanilla-body-query`.
* Use UTF-8 URL encoding instead of Windows-1252 encoding in `get-vanilla-query-param-value-ordering`.

# 0.1.0
* Created MWSV2 test suite.
202 changes: 202 additions & 0 deletions mauth-protocol-test-suite/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,202 @@

Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

1. Definitions.

"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.

"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.

"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.

"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.

"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.

"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.

"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).

"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.

"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."

"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.

2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.

3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.

4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:

(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and

(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and

(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and

(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.

You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.

5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.

6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.

7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.

8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.

9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.

END OF TERMS AND CONDITIONS

APPENDIX: How to apply the Apache License to your work.

To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright [yyyy] [name of copyright owner]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
4 changes: 4 additions & 0 deletions mauth-protocol-test-suite/NOTICE
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Medidata mAuth Protocol 4 Test Suite

This product includes software developed at
Amazon.com, Inc. (https://www.amazon.com/).
28 changes: 28 additions & 0 deletions mauth-protocol-test-suite/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# mauth-protocol-test-suite

This repo contains test cases for mAuth digital signature protocols and was created to aid in the development of mAuth clients in a language agnostic way. Currently the repo contains cases for the MWS and MWSV2 protocols. The MWSV2 protocol specification is described [here](https://learn.mdsol.com/display/CA/MAuth+Protocol+V2+Specification). The repo also serves as an description of mAuth protocol specifications with examples.

## Usage

This repo should be added to each mAuth client via git submodules (see documentation [here](https://git-scm.com/book/en/v2/Git-Tools-Submodules) and run as part of the test suite for that mAuth client to ensure it conforms to the mAuth protocol specification. mAuth clients are expected to write some glue code that will allow them to run the cases provided here with their testing tool (Rspec etc).

### Test Cases

For each there are four files with the following extensions: `.req`, `.sts`, `.sig`, `.authz`.

The `.req` files contain a JSON hash of the attributes of an unsigned request.
The `.sts` files contain the `string_to_sign` (the string that will be passed through mAuth client's hashing algorithm) for that request.
The `.sig` files contain the digital signature of that request.
The `.authz` files contain a JSON hash of the authentication headers that would be added to that request in order to sign it.

For each case, clients that sign requests should run three tests:
1. Given the request attributes in the `.req` file, the client should generate a string_to_sign that matches the `.sts` file.
2. Given the string_to_sign in the `.sts` file, the client should generate a digital signature that matches the `.sig` file.
3. Given the signature in the `.sig` file, the client should generate authentication headers that match the headers in the `.authz` file.

Clients that authenticate requests should also run an additional test:
1. Combining the authentication headers in the `.authz` file and the request attributes in the `.req` file into a signed request, the client should consider the request authentic.

### Signing Parameters

The mAuth client running these tests should sign requests with the [provided RSA private key](./signing-params/rsa-key) and authenticate requests with the [provided RSA public key](./signing-params/rsa-key-pub). All requests should be signed and authenticated with the `app_uuid` and `request_time` provided in [signing-config.json](./signing-config.json). If the testing mAuth client does not accept the request time as an argument some library that mocks time APIs (i.e. Timecop for Ruby) should be used.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"X-MWS-Authentication": "MWS 836a454e-7f14-4192-8f5a-2a9d3d66f70c:HIrmHSjmK7Q91Xwm+zYvudeIV+RcOMJoEc7bUfeM6+1ReQ7tsd1ankm1BFSTy3a/iCMPx4k5F4NKxxCdCunYV5QdM51hQiJfHB6ALg1WfSnfNnZtOWZAC78R2X3709G4mozJCB0GJ3ERm5GMUiL4ncuGz4wWuw3RGJHDwcFH7F55NnCgdL2nBJ8e0MLGGaDd8np8Kk0HQOyAT867t+g0/SHR7ZN/cfQILtdFKmMRC0Jpx8Sv4NQwsfYq/LldPTBb2EPKyzcbk7JKc5CKPcSZ3GMlYS8DpTAL94PQKfRQd8pcI/bFqUX/uwcqiCFlLFSj15UBOsiVYsif2crTrc5lKQ==",
"X-MWS-Time": 1585082925
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"verb": "POST",
"url": "/",
"body_filepath": "./white_1x1.png"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
HIrmHSjmK7Q91Xwm+zYvudeIV+RcOMJoEc7bUfeM6+1ReQ7tsd1ankm1BFSTy3a/iCMPx4k5F4NKxxCdCunYV5QdM51hQiJfHB6ALg1WfSnfNnZtOWZAC78R2X3709G4mozJCB0GJ3ERm5GMUiL4ncuGz4wWuw3RGJHDwcFH7F55NnCgdL2nBJ8e0MLGGaDd8np8Kk0HQOyAT867t+g0/SHR7ZN/cfQILtdFKmMRC0Jpx8Sv4NQwsfYq/LldPTBb2EPKyzcbk7JKc5CKPcSZ3GMlYS8DpTAL94PQKfRQd8pcI/bFqUX/uwcqiCFlLFSj15UBOsiVYsif2crTrc5lKQ==
2 changes: 2 additions & 0 deletions mauth-protocol-test-suite/protocols/MWS/binary-body/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This case for binary request bodies is slightly different than the other cases. mAuth clients running this test should read in the [blank.jpeg](./blank.jpeg) file as the request body.
The `.sts` file is intentionally omitted because the MWS protocol uses the binary request body itself as a part of the `string_to_sign`.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"X-MWS-Authentication": "MWS 836a454e-7f14-4192-8f5a-2a9d3d66f70c:gFXLfvetWAf7UhpcVjre+JoWrMj8+Oy9LhcVrbKWEhW8Etga6aFtSmh760bHouJ7CAWkUjYfDtdXznOSjeqXTygbi+i+5Id63mndkMhR2O/WmsWHms/otUx8DsKQH9GdmuhftCs1xIR3LDtzSH8O1bJNdz3+O6Qg7/jXttb+ib5xnytvbKbK5yV1GIh07pgMlPJ0bYpk/21lVMHEGhNW1ZUejumlaqz+OUJqREfX5ZX2hkOy2mnCqzP/b4azvM0/W3muRr7yPYNpRLUiycze84652R45ogz7ofL5ixEFTaKv6p2DEIm7ya5dYgX9BJ8nnHXDjGVGOVTjccfFOWVy+g==",
"X-MWS-Time": 1585082925
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"verb": "GET",
"url": "/-._~0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
"body": null
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
gFXLfvetWAf7UhpcVjre+JoWrMj8+Oy9LhcVrbKWEhW8Etga6aFtSmh760bHouJ7CAWkUjYfDtdXznOSjeqXTygbi+i+5Id63mndkMhR2O/WmsWHms/otUx8DsKQH9GdmuhftCs1xIR3LDtzSH8O1bJNdz3+O6Qg7/jXttb+ib5xnytvbKbK5yV1GIh07pgMlPJ0bYpk/21lVMHEGhNW1ZUejumlaqz+OUJqREfX5ZX2hkOy2mnCqzP/b4azvM0/W3muRr7yPYNpRLUiycze84652R45ogz7ofL5ixEFTaKv6p2DEIm7ya5dYgX9BJ8nnHXDjGVGOVTjccfFOWVy+g==
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
GET
/-._~0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz

836a454e-7f14-4192-8f5a-2a9d3d66f70c
1585082925
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"X-MWS-Authentication": "MWS 836a454e-7f14-4192-8f5a-2a9d3d66f70c:MPm21IiAVd/mkeVRKsPJOQG6tFa55n/aGNxsUdpfwQJYESGDcqvNda0gG3QuOgsYdgKI8OjgWuhpCQEExb101uS90KVkWXwcuRt/AFtgswTkt0pkE5PHrrCFz/rbcGNnY3BtI37TBBfQqTVx406B0PRHLkKU2898hhRM1yzeLE/HHCY2zNR9nlgmm2dIBhxltCfHSLRtc7ACecSsWh5s3mgrSRxvOfQpzIRKmbChP9B9Ltq3Iv/Cmt3CxX0bPdxW1vn17L/KITqu5bnggDDeDKFJUMm8cMBQYQAlfVpZKfcC9EamRKGTrdE4JcQEAX46G1RvWAnG/40rAFhOKOdkLg==",
"X-MWS-Time": 1585082925
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"verb": "GET",
"url": "/",
"body": null
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
MPm21IiAVd/mkeVRKsPJOQG6tFa55n/aGNxsUdpfwQJYESGDcqvNda0gG3QuOgsYdgKI8OjgWuhpCQEExb101uS90KVkWXwcuRt/AFtgswTkt0pkE5PHrrCFz/rbcGNnY3BtI37TBBfQqTVx406B0PRHLkKU2898hhRM1yzeLE/HHCY2zNR9nlgmm2dIBhxltCfHSLRtc7ACecSsWh5s3mgrSRxvOfQpzIRKmbChP9B9Ltq3Iv/Cmt3CxX0bPdxW1vn17L/KITqu5bnggDDeDKFJUMm8cMBQYQAlfVpZKfcC9EamRKGTrdE4JcQEAX46G1RvWAnG/40rAFhOKOdkLg==
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
GET
/

836a454e-7f14-4192-8f5a-2a9d3d66f70c
1585082925
Loading