*/ class StatsTest extends TestCase { protected function getApiClass() { return 'Mailgun\Api\Stats'; } /** * @dataProvider totalProvider */ public function testTotal($queryParameters, $responseData) { $api = $this->getApiMock(null, null, new ModelHydrator()); $api->expects($this->once()) ->method('httpGet') ->with('/v3/domain/stats/total', $queryParameters) ->willReturn(new Response(200, ['Content-Type' => 'application/json'], \json_encode($responseData))); $total = $api->total('domain', $queryParameters); $this->assertInstanceOf(TotalResponse::class, $total); $this->assertCount(count($responseData['stats']), $total->getStats()); $this->assertContainsOnlyInstancesOf(TotalResponseItem::class, $total->getStats()); } /** * @expectedException \Mailgun\Exception\InvalidArgumentException */ public function testTotalInvalidArgument() { $api = $this->getApiMock(); $api->total(''); } public function testAll() { $data = [ 'foo' => 'bar', ]; $api = $this->getApiMock(); $api->expects($this->once()) ->method('httpGet') ->with('/v3/domain/stats', $data) ->willReturn(new Response()); $api->all('domain', $data); } /** * @expectedException \Mailgun\Exception\InvalidArgumentException */ public function testAllInvalidArgument() { $api = $this->getApiMock(); $api->all(''); } public function totalProvider() { return [ 'accepted events' => [ 'queryParameters' => [ 'event' => 'accepted', ], 'responseData' => $this->generateTotalResponsePayload([ [ 'time' => $this->formatDate('-7 days'), 'accepted' => [ 'outgoing' => 10, 'incoming' => 5, 'total' => 15, ], ], ]), ], 'failed events' => [ 'queryParameters' => [ 'event' => 'failed', ], 'responseData' => $this->generateTotalResponsePayload([ [ 'time' => $this->formatDate('-7 days'), 'failed' => [ 'permanent' => [ 'bounce' => 4, 'delayed-bounce' => 1, 'suppress-bounce' => 1, 'suppress-unsubscribe' => 2, 'suppress-complaint' => 3, 'total' => 10, ], 'temporary' => [ 'espblock' => 1, ], ], ], ]), ], 'delivered events' => [ 'queryParameters' => [ 'event' => 'delivered', ], 'responseData' => $this->generateTotalResponsePayload([ [ 'time' => $this->formatDate('-7 days'), 'delivered' => [ 'smtp' => 15, 'http' => 5, 'total' => 20, ], ], ]), ], ]; } private function generateTotalResponsePayload(array $stats, $start = '-7 days', $end = 'now', $resolution = 'day') { return [ 'end' => $this->formatDate($end), 'resolution' => $resolution, 'start' => $this->formatDate($start), 'stats' => $stats, ]; } private function formatDate($time = 'now') { return (new \DateTime($time, new \DateTimeZone('UTC')))->format('D, d M Y H:i:s T'); } }