generateHeader(); $event = Webhook::constructEvent(self::EVENT_PAYLOAD, $sigHeader, self::SECRET); $this->assertEquals("evt_test_webhook", $event->id); } /** * @expectedException \UnexpectedValueException */ public function testInvalidJson() { $payload = "this is not valid JSON"; $sigHeader = $this->generateHeader(array("payload" => $payload)); Webhook::constructEvent($payload, $sigHeader, self::SECRET); } /** * @expectedException \Stripe\Error\SignatureVerification */ public function testValidJsonAndInvalidHeader() { $sigHeader = "bad_header"; Webhook::constructEvent(self::EVENT_PAYLOAD, $sigHeader, self::SECRET); } /** * @expectedException \Stripe\Error\SignatureVerification * @expectedExceptionMessage Unable to extract timestamp and signatures from header */ public function testMalformedHeader() { $sigHeader = "i'm not even a real signature header"; WebhookSignature::verifyHeader(self::EVENT_PAYLOAD, $sigHeader, self::SECRET); } /** * @expectedException \Stripe\Error\SignatureVerification * @expectedExceptionMessage No signatures found with expected scheme */ public function testNoSignaturesWithExpectedScheme() { $sigHeader = $this->generateHeader(array("scheme" => "v0")); WebhookSignature::verifyHeader(self::EVENT_PAYLOAD, $sigHeader, self::SECRET); } /** * @expectedException \Stripe\Error\SignatureVerification * @expectedExceptionMessage No signatures found matching the expected signature for payload */ public function testNoValidSignatureForPayload() { $sigHeader = $this->generateHeader(array("signature" => "bad_signature")); WebhookSignature::verifyHeader(self::EVENT_PAYLOAD, $sigHeader, self::SECRET); } /** * @expectedException \Stripe\Error\SignatureVerification * @expectedExceptionMessage Timestamp outside the tolerance zone */ public function testTimestampOutsideTolerance() { $sigHeader = $this->generateHeader(array("timestamp" => time() - 15)); WebhookSignature::verifyHeader(self::EVENT_PAYLOAD, $sigHeader, self::SECRET, 10); } public function testValidHeaderAndSignature() { $sigHeader = $this->generateHeader(); $this->assertTrue(WebhookSignature::verifyHeader(self::EVENT_PAYLOAD, $sigHeader, self::SECRET, 10)); } public function testHeaderContainsValidSignature() { $sigHeader = $this->generateHeader() . ",v1=bad_signature"; $this->assertTrue(WebhookSignature::verifyHeader(self::EVENT_PAYLOAD, $sigHeader, self::SECRET, 10)); } public function testTimestampOffButNoTolerance() { $sigHeader = $this->generateHeader(array("timestamp" => 12345)); $this->assertTrue(WebhookSignature::verifyHeader(self::EVENT_PAYLOAD, $sigHeader, self::SECRET)); } }