Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
simplesamlphp-module-pica
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dmj
simplesamlphp-module-pica
Commits
cbfcacd5
Commit
cbfcacd5
authored
9 years ago
by
David Maus
Browse files
Options
Downloads
Patches
Plain Diff
Add unit tests
parent
58ffd387
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
phpunit.xml
+5
-0
5 additions, 0 deletions
phpunit.xml
tests/PicaTest.php
+51
-0
51 additions, 0 deletions
tests/PicaTest.php
with
56 additions
and
0 deletions
phpunit.xml
0 → 100644
+
5
−
0
View file @
cbfcacd5
<phpunit
bootstrap=
"vendor/autoload.php"
strict=
"true"
>
<testsuite
name=
"Unit tests"
>
<directory
suffix=
"Test.php"
>
tests/
</directory>
</testsuite>
</phpunit>
This diff is collapsed.
Click to expand it.
tests/PicaTest.php
0 → 100644
+
51
−
0
View file @
cbfcacd5
<?php
/**
* This file is part of SimpleSAMLphp Module Pica.
*
* SimpleSAMLphp Module Pica is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* SimpleSAMLphp Module Pica 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with SimpleSAMLphp Module Pica. If not, see <http://www.gnu.org/licenses/>.
*
* @author David Maus <maus@hab.de>
* @copyright (c) 2016 by Herzog August Bibliothek Wolfenbüttel
* @license http://www.gnu.org/licenses/gpl.txt GNU General Public License v3 or higher
*/
use
PHPUnit_Framework_TestCase
as
TestCase
;
require_once
__DIR__
.
'/../lib/Auth/Source/Pica.php'
;
/**
* Unit tests for the Pica authentication source.
*
* @author David Maus <maus@hab.de>
* @copyright (c) 2016 by Herzog August Bibliothek Wolfenbüttel
* @license http://www.gnu.org/licenses/gpl.txt GNU General Public License v3 or higher
*/
class
PicaTest
extends
TestCase
{
/**
* @expectedException Exception
* @expectedExceptionMessage Unknown pica authentication module
*/
public
function
testExceptionOnUnknownPicaAuthenticationModule
()
{
$config
=
SimpleSAML_Configuration
::
loadFromArray
(
array
(
'module'
=>
'foobar'
));
$source
=
$this
->
getMockBuilder
(
'sspmod_pica_Auth_Source_Pica'
)
->
disableOriginalConstructor
()
->
setMethods
(
null
)
->
getMock
();
$source
->
createAuthenticationModuleFactory
(
$config
);
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment