AppserverIo\Appserver\Core\ServerNodeConfigurationTest::testGetRewrites PHP Method

testGetRewrites() public method

Checks whether the getRewrites() method returns the expected result.
public testGetRewrites ( ) : void
return void
    public function testGetRewrites()
    {
        // initialize the array with expected result
        $rewrites = json_decode(file_get_contents(__DIR__ . '/Api/Node/_files/prepareRewrites.json'));
        // create a mock configuration instance
        $mockNode = $this->getMock('AppserverIo\\Appserver\\Core\\Api\\Node\\ServerNode', array('getRewritesAsArray'));
        $mockNode->expects($this->once())->method('getRewritesAsArray')->will($this->returnValue($rewrites));
        // initialize the server node
        $serverNode = new ServerNodeConfiguration($mockNode);
        // check the array with the rewrites data
        $this->assertSame($rewrites, $serverNode->getRewrites());
    }