This commit is contained in:
2022-11-25 21:21:30 +01:00
parent 2d6df0d5f0
commit 94deb06f52
132 changed files with 44887 additions and 41368 deletions

View File

@@ -1,4 +1,5 @@
<?php
/** DomFramework - Tests
* @package domframework
* @author Dominique Fournier <dominique@fournier38.fr>
@@ -12,77 +13,75 @@ use Domframework\Authsympa;
/** Test the authentication on Sympa Service */
class AuthsympaTest extends \PHPUnit_Framework_TestCase
{
public function test_connect_1 ()
{
// Empty
$authsympa = new Authsympa ();
$this->expectException ();
$authsympa->connect ();
}
public function test_connect_1()
{
// Empty
$authsympa = new Authsympa();
$this->expectException();
$authsympa->connect();
}
public function test_connect_2 ()
{
$authsympa = new Authsympa ();
$authsympa->wsdl = "https://listes.grenoble.cnrs.fr/sympa/wsdl";
$authsympa->connect ();
$res = $authsympa->getDetails ();
$this->assertSame ($res, null);
}
public function test_connect_2()
{
$authsympa = new Authsympa();
$authsympa->wsdl = "https://listes.grenoble.cnrs.fr/sympa/wsdl";
$authsympa->connect();
$res = $authsympa->getDetails();
$this->assertSame($res, null);
}
public function test_auth_1 ()
{
// Invalid password
$authsympa = new Authsympa ();
$authsympa->wsdl = "https://listes.grenoble.cnrs.fr/sympa/wsdl";
$authsympa->list = "listtest@listes.grenoble.cnrs.fr";
$authsympa->connect ();
$this->expectException ();
$res = $authsympa->authentication ("richard.heral@grenoble.cnrs.fr", "XXXX");
}
public function test_auth_1()
{
// Invalid password
$authsympa = new Authsympa();
$authsympa->wsdl = "https://listes.grenoble.cnrs.fr/sympa/wsdl";
$authsympa->list = "listtest@listes.grenoble.cnrs.fr";
$authsympa->connect();
$this->expectException();
$res = $authsympa->authentication("richard.heral@grenoble.cnrs.fr", "XXXX");
}
public function test_auth_2 ()
{
// Unknown user
$authsympa = new Authsympa ();
$authsympa->wsdl = "https://listes.grenoble.cnrs.fr/sympa/wsdl";
$authsympa->list = "listtest@listes.grenoble.cnrs.fr";
$authsympa->connect ();
$this->expectException ();
$res = $authsympa->authentication ("Unknown@grenoble.cnrs.fr", "XXXX");
}
public function test_auth_2()
{
// Unknown user
$authsympa = new Authsympa();
$authsympa->wsdl = "https://listes.grenoble.cnrs.fr/sympa/wsdl";
$authsympa->list = "listtest@listes.grenoble.cnrs.fr";
$authsympa->connect();
$this->expectException();
$res = $authsympa->authentication("Unknown@grenoble.cnrs.fr", "XXXX");
}
public function test_auth_3 ()
{
// OK !
$authsympa = new Authsympa ();
$authsympa->wsdl = "https://listes.grenoble.cnrs.fr/sympa/wsdl";
$authsympa->list = "listtest@listes.grenoble.cnrs.fr";
$authsympa->connect ();
$res = $authsympa->authentication ("richard.heral@grenoble.cnrs.fr", "Lavchdn7!");
$this->assertSame ($res, true);
}
public function test_auth_3()
{
// OK !
$authsympa = new Authsympa();
$authsympa->wsdl = "https://listes.grenoble.cnrs.fr/sympa/wsdl";
$authsympa->list = "listtest@listes.grenoble.cnrs.fr";
$authsympa->connect();
$res = $authsympa->authentication("richard.heral@grenoble.cnrs.fr", "Lavchdn7!");
$this->assertSame($res, true);
}
public function test_auth_4 ()
{
// Unknown list
$authsympa = new Authsympa ();
$authsympa->wsdl = "https://listes.grenoble.cnrs.fr/sympa/wsdl";
$authsympa->list = "unknown@listes.grenoble.cnrs.fr";
$authsympa->connect ();
$this->expectException ();
$res = $authsympa->authentication ("richard.heral@grenoble.cnrs.fr", "Lavchdn8!");
}
public function test_auth_4()
{
// Unknown list
$authsympa = new Authsympa();
$authsympa->wsdl = "https://listes.grenoble.cnrs.fr/sympa/wsdl";
$authsympa->list = "unknown@listes.grenoble.cnrs.fr";
$authsympa->connect();
$this->expectException();
$res = $authsympa->authentication("richard.heral@grenoble.cnrs.fr", "Lavchdn8!");
}
public function test_auth_5 ()
{
// User not in list
$authsympa = new Authsympa ();
$authsympa->wsdl = "https://listes.grenoble.cnrs.fr/sympa/wsdl";
$authsympa->list = "admins@listes.grenoble.cnrs.fr";
$authsympa->connect ();
$this->expectException ();
$res = $authsympa->authentication ("richard.heral@grenoble.cnrs.fr", "Lavchdn8!");
}
public function test_auth_5()
{
// User not in list
$authsympa = new Authsympa();
$authsympa->wsdl = "https://listes.grenoble.cnrs.fr/sympa/wsdl";
$authsympa->list = "admins@listes.grenoble.cnrs.fr";
$authsympa->connect();
$this->expectException();
$res = $authsympa->authentication("richard.heral@grenoble.cnrs.fr", "Lavchdn8!");
}
}