X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FOStatus%2Ftests%2Fslap.php;fp=plugins%2FOStatus%2Ftests%2Fslap.php;h=99fb6c631caa19fcba389cacc847ac5f606f04ba;hb=41773d3f67b61aa06eac4099ddfe1401f36654b5;hp=e1670bb33658f4ed5dd8b3c3e2ad1209f72b8c13;hpb=14251d26adaf48d8ae7aaa80f7259ca84412880b;p=quix0rs-gnu-social.git diff --git a/plugins/OStatus/tests/slap.php b/plugins/OStatus/tests/slap.php index e1670bb336..99fb6c631c 100644 --- a/plugins/OStatus/tests/slap.php +++ b/plugins/OStatus/tests/slap.php @@ -51,15 +51,16 @@ echo "== Original entry ==\n\n"; print $entry; print "\n\n"; -$salmon = new Salmon(); -$envelope = $salmon->createMagicEnv($entry, $profile); +$magic_env = MagicEnvelope::signForProfile($entry, $profile); +$envxml = $magic_env->toXML(); echo "== Signed envelope ==\n\n"; -print $envelope; +print $envxml; print "\n\n"; echo "== Testing local verification ==\n\n"; -$ok = $salmon->verifyMagicEnv($envelope); +$magic_env = new MagicEnvelope($envxml); +$ok = $magic_env->verify(); if ($ok) { print "OK\n\n"; } else { @@ -72,7 +73,7 @@ if (have_option('--verify')) { print "Sending for verification to $url ...\n"; $client = new HTTPClient(); - $response = $client->post($url, array(), array('magic_env' => $envelope)); + $response = $client->post($url, array(), array('magic_env' => $envxml)); print $response->getStatus() . "\n\n"; print $response->getBody() . "\n\n";