From fee2efa237dc02d10843449efce9834fc0a66eaf Mon Sep 17 00:00:00 2001 From: Tim van Dijen Date: Fri, 14 Jul 2023 12:45:28 +0200 Subject: [PATCH] Add GRNET metadata to the interoperability-tests --- .github/workflows/interoperability.yml | 1 + tests/InterOperability/EntitiesDescriptorTest.php | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.github/workflows/interoperability.yml b/.github/workflows/interoperability.yml index 63889e64a..4a3e28f08 100644 --- a/.github/workflows/interoperability.yml +++ b/.github/workflows/interoperability.yml @@ -80,6 +80,7 @@ jobs: mkdir -p /tmp/metadata wget https://mds.edugain.org/edugain-v2.xml -O /tmp/metadata/edugain.xml wget https://technical.edugain.org/mds-v2.cer -O /tmp/metadataedugain-pub.crt + wget https://md.aai.grnet.gr/aggregates/grnet-metadata.xml -i /tmp/metadata/grnet.xml - name: Run unit tests run: | diff --git a/tests/InterOperability/EntitiesDescriptorTest.php b/tests/InterOperability/EntitiesDescriptorTest.php index 1434f1f9e..d42981c2f 100644 --- a/tests/InterOperability/EntitiesDescriptorTest.php +++ b/tests/InterOperability/EntitiesDescriptorTest.php @@ -47,6 +47,10 @@ public static function provideMetadata(): array true, DOMDocumentFactory::fromFile('/tmp/metadata/edugain.xml')->documentElement, ], + 'GRNET' => [ + true, + DOMDocumentFactory::fromFile('/tmp/metadata/grnet.xml')->documentElement, + ], ]; } }