]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OStatus/tests/MagicEnvelopeTest.php
Some Google stuff that need to be there (or comments)
[quix0rs-gnu-social.git] / plugins / OStatus / tests / MagicEnvelopeTest.php
1 <?php
2
3 if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
4     print "This script must be run from the command line\n";
5     exit();
6 }
7
8 define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..'));
9 define('GNUSOCIAL', true);
10 define('STATUSNET', true);  // compatibility
11
12 require_once INSTALLDIR . '/lib/common.php';
13
14 class MagicEnvelopeTest extends PHPUnit_Framework_TestCase
15 {
16     /**
17      * Test that MagicEnvelope builds the correct plaintext for signing.
18      * @dataProvider provider
19      */
20     public function testSignatureText(MagicEnvelope $env, $expected)
21     {
22         $text = $env->signingText();
23
24         $this->assertEquals($expected, $text, "'$text' should be '$expected'");
25     }
26
27     static public function provider()
28     {
29         // Sample case given in spec:
30         // http://salmon-protocol.googlecode.com/svn/trunk/draft-panzer-magicsig-00.html#signing
31         $magic_env = new MagicEnvelope();
32         $magic_env->data = 'Tm90IHJlYWxseSBBdG9t';
33         $magic_env->data_type = 'application/atom+xml';
34         $magic_env->encoding = 'base64url';
35         $magic_env->alg = 'RSA-SHA256';
36
37         return array(
38             array(
39                 $magic_env,
40                 'Tm90IHJlYWxseSBBdG9t.YXBwbGljYXRpb24vYXRvbSt4bWw=.YmFzZTY0dXJs.UlNBLVNIQTI1Ng=='
41             )
42         );
43     }
44 }