Skip to content

Commit 2ddbc58

Browse files
authored
v0.2.1 release
2 parents efa59cd + 1f57308 commit 2ddbc58

File tree

4 files changed

+75
-2
lines changed

4 files changed

+75
-2
lines changed

.github/workflows/dotnet.yml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,3 +143,58 @@ jobs:
143143
run: |
144144
docker-compose -f './mock-data-recipient/Source/docker-compose.UnitTests.yml' down
145145
146+
# Archive unit test results
147+
- name: Archive unit test results
148+
uses: actions/upload-artifact@v2
149+
if: always()
150+
with:
151+
name: unit-test-results
152+
path: ${{ github.workspace }}/mock-data-recipient/Source/_temp/mock-data-recipient-unit-tests/testresults
153+
154+
# Archive integration test results
155+
- name: Archive integration test results
156+
uses: actions/upload-artifact@v2
157+
if: always()
158+
with:
159+
name: integration-test-results
160+
path: ${{ github.workspace }}/mock-data-recipient/Source/_temp/mock-data-recipient-integration-tests/testresults
161+
162+
# Archive e2e test results
163+
- name: Archive e2e test results
164+
uses: actions/upload-artifact@v2
165+
if: always()
166+
with:
167+
name: e2e-test-results
168+
path: ${{ github.workspace }}/mock-data-recipient/Source/_temp/mock-data-recipient-e2e-tests/testresults
169+
170+
# Archive mock data recipient logs
171+
- name: Archive mock data recipient logs
172+
uses: actions/upload-artifact@v2
173+
if: always()
174+
with:
175+
name: integration-test-artifacts
176+
path: ${{ github.workspace }}/mock-data-recipient/Source/_temp/mock-data-recipient/tmp
177+
178+
# Archive mock data holder logs
179+
- name: Archive mock data holder logs
180+
uses: actions/upload-artifact@v2
181+
if: always()
182+
with:
183+
name: integration-test-artifacts
184+
path: ${{ github.workspace }}/mock-data-recipient/Source/_temp/mock-data-holder/tmp
185+
186+
# Archive mock data holder energy logs
187+
- name: Archive mock data holder energy logs
188+
uses: actions/upload-artifact@v2
189+
if: always()
190+
with:
191+
name: integration-test-artifacts
192+
path: ${{ github.workspace }}/mock-data-recipient/Source/_temp/mock-data-holder-energy/tmp
193+
194+
# Archive mock register logs
195+
- name: Archive mock register logs
196+
uses: actions/upload-artifact@v2
197+
if: always()
198+
with:
199+
name: integration-test-artifacts
200+
path: ${{ github.workspace }}/mock-data-recipient/Source/_temp/mock-register/tmp

.github/workflows/test-report.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,17 @@ jobs:
3434
name: Integration Tests
3535
path: '*.trx'
3636
reporter: dotnet-trx
37+
38+
e2e-test-report:
39+
runs-on: ubuntu-latest
40+
41+
steps:
42+
- uses: actions/checkout@v2
43+
44+
- name: Publish e2e Test Report
45+
uses: dorny/test-reporter@v1
46+
with:
47+
artifact: e2e-test-results
48+
name: e2e Tests
49+
path: '*.trx'
50+
reporter: dotnet-trx

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.2.1] - 2022-06-09
10+
### Changed
11+
- Build and Test action to archive test results. End to end tests now included in test report.
12+
913
## [0.2.0] - 2022-05-25
1014
### Added
1115
- PKCE support added to "Consent and Authorisations" and "PAR" in preparation for FAPI 1.0.
@@ -40,4 +44,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4044
## [0.1.0] - 2021-10-01
4145

4246
### Added
43-
- First release of the Mock Data Recipient.
47+
- First release of the Mock Data Recipient.

CertificateManagement/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Certificates play an important part in the CDR ecosystem to establish trust between participants and protect communications. **DigiCert** is the Certificate Authority (CA) for the CDR and the ACCC is responsible for provisioning DigiCert certificates to participants during the on-boarding process.
44

5-
For more information, consult the [Certificate Management](https://cdr-register.github.io/register/#certificate-management) section of the Register Design.
5+
For more information, consult the [Certificate Management](https://consumerdatastandardsaustralia.github.io/standards/#certificate-management) section of the Consumer Data Standards.
66

77
The Mock Data Recipient will mimic the behaviour of a data recipient in the CDR ecosystem and therefore will use certificates in its interactions. However, the use of DigiCert for this purpose is not feasible or scalable so an alternative approach is adopted.
88

0 commit comments

Comments
 (0)