Browse Source

* inject iointerface into test
* document test cases
* add a test-case which should not have ' --no-auth-cache'

till 13 years ago
parent
commit
cde38f6634
1 changed files with 29 additions and 4 deletions
  1. 29 4
      tests/Composer/Test/Repository/Vcs/SvnDriverTest.php

+ 29 - 4
tests/Composer/Test/Repository/Vcs/SvnDriverTest.php

@@ -23,21 +23,46 @@ class SvnDriverTest extends \PHPUnit_Framework_TestCase
     /**
      * Provide some examples for {@self::testCredentials()}.
      *
+     * {@link \Composer\IO\NullIO} is always non-interactive.
+     *
      * @return array
      */
     public static function urlProvider()
     {
         return array(
-            array('http://till:test@svn.example.org/', " --no-auth-cache --username 'till' --password 'test' "),
-            array('http://svn.apache.org/', ''),
-            array('svn://johndoe@example.org', " --no-auth-cache --username 'johndoe' --password '' "),
+            array(
+                'http://till:test@svn.example.org/',
+                " --no-auth-cache --username 'till' --password 'test' ",
+                '\Composer\IO\NullIO',
+            ),
+            array(
+                'http://svn.apache.org/',
+                '',
+                '\Composer\IO\NullIO',
+            ),
+            array(
+                'svn://johndoe@example.org',
+                " --no-auth-cache --username 'johndoe' --password '' ",
+                '\Composer\IO\NullIO',
+            ),
+            array(
+                'https://till:secret@corp.svn.local/project1',
+                " --username 'till' --password 'secret' ",
+                '\Composer\IO\ConsoleIO',
+            ),
         );
     }
 
     /**
+     * Test the credential string.
+     *
+     * @param string $url     The SVN url.
+     * @param string $expect  The expectation for the test.
+     * @param string $ioClass The IO interface.
+     * 
      * @dataProvider urlProvider
      */
-    public function testCredentials($url, $expect)
+    public function testCredentials($url, $expect, $ioClass)
     {
         $io  = new \Composer\IO\NullIO;
         $svn = new SvnDriver($url, $io);