Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/user_saml.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2016-11-14 16:18:59 +0300
committerLukas Reschke <lukas@statuscode.ch>2016-11-14 16:18:59 +0300
commit59a7b8b50e10868d92b45f618fdcc1cc66419c06 (patch)
treeb0ece324d78573b57217757103701bf5e7d6202f /tests
parent79462b37fdc018ebf535654c4ce3380ffacba240 (diff)
Add tests for routes.php
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'tests')
-rw-r--r--tests/AppInfo/RoutesTest.php61
1 files changed, 61 insertions, 0 deletions
diff --git a/tests/AppInfo/RoutesTest.php b/tests/AppInfo/RoutesTest.php
new file mode 100644
index 00000000..d69b8710
--- /dev/null
+++ b/tests/AppInfo/RoutesTest.php
@@ -0,0 +1,61 @@
+<?php
+/**
+ * @copyright Copyright (c) 2016 Lukas Reschke <lukas@statuscode.ch>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace OCA\User_SAML\Tests\AppInfo;
+
+use Test\TestCase;
+
+class Test extends TestCase {
+ public function testFile() {
+ $routes = require_once __DIR__ . '/../../appinfo/routes.php';
+
+ $expected = [
+ 'routes' => [
+ [
+ 'name' => 'SAML#login',
+ 'url' => '/saml/login',
+ 'verb' => 'GET',
+ ],
+ [
+ 'name' => 'SAML#getMetadata',
+ 'url' => '/saml/metadata',
+ 'verb' => 'GET',
+ ],
+ [
+ 'name' => 'SAML#assertionConsumerService',
+ 'url' => '/saml/acs',
+ 'verb' => 'POST',
+ ],
+ [
+ 'name' => 'SAML#singleLogoutService',
+ 'url' => '/saml/sls',
+ 'verb' => 'GET',
+ ],
+ [
+ 'name' => 'SAML#notProvisioned',
+ 'url' => '/saml/notProvisioned',
+ 'verb' => 'GET',
+ ],
+ ],
+ ];
+ $this->assertSame($expected, $routes);
+ }
+}