ParserTest.php
1<?php
2
3namespace tests\Udger;
4
5class ParserTest extends \Codeception\TestCase\Test {
6
10 protected $guy;
11
16 protected $parser;
17
18 protected function _before()
19 {
20 $this->parser = new \Udger\Parser(
21 \Codeception\Util\Stub::makeEmpty("Psr\Log\LoggerInterface"),
22 \Codeception\Util\Stub::makeEmpty("Udger\Helper\IP"));
23 #$this->parser->setAccessKey("udger-php-unit");
24 $this->parser->setDataFile("/dev/null");
25 }
26
27 protected function _after()
28 {
29
30 }
31
32 // tests
33 public function testSetDataFile()
34 {
35 $this->setExpectedException("Exception");
36 $this->assertTrue($this->parser->setDataFile("/this/is/a/missing/path"));
37 }
38
39 public function testSetAccessKey()
40 {
41 $this->assertTrue($this->parser->setAccessKey("123456"));
42 }
43
44 public function testSetUA()
45 {
46 $this->assertTrue($this->parser->setUA("agent"));
47 }
48
49 public function testSetIP()
50 {
51 $this->assertTrue($this->parser->setIP("0.0.0.0"));
52 }
53
54 public function testParse()
55 {
56 #$this->setExpectedException("Exception");
57 $this->parser->parse();
58 }
59
60 public function testAccount()
61 {
62 $this->setExpectedException("Exception");
63 $this->parser->account("test key");
64 }
65}