XmlResponseFormatterTest.php 3.45 KB
Newer Older
Qiang Xue committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
<?php
/**
 * @link http://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */

namespace yiiunit\framework\web;

use yii\base\Object;
use yii\web\Response;
use yii\web\XmlResponseFormatter;

class Post extends Object
{
	public $id;
	public $title;

	public function __construct($id, $title)
	{
		$this->id = $id;
		$this->title = $title;
	}
}

/**
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @since 2.0
 */
class XmlResponseFormatterTest extends \yiiunit\TestCase
{
	/**
	 * @var Response
	 */
	public $response;
	/**
	 * @var XmlResponseFormatter
	 */
	public $formatter;

	protected function setUp()
	{
		$this->mockApplication();
		$this->response = new Response;
		$this->formatter = new XmlResponseFormatter;
	}

48 49 50 51 52 53
	/**
	 * @param mixed $data the data to be formatted 
	 * @param string $xml the expected XML body
	 * @dataProvider formatScalarDataProvider
	 */
	public function testFormatScalar($data, $xml)
Qiang Xue committed
54 55
	{
		$head = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
56 57 58 59 60 61 62 63 64 65 66 67 68 69
		$this->response->data = $data;
		$this->formatter->format($this->response);
		$this->assertEquals($head . $xml, $this->response->content);
	}
	
	public function formatScalarDataProvider()
	{
		return array(
			array(null, "<response></response>\n"),
			array(1, "<response>1</response>\n"),
			array('abc', "<response>abc</response>\n"),
			array(true, "<response>1</response>\n"),
			array("<>", "<response>&lt;&gt;</response>\n"),
		);
Qiang Xue committed
70 71
	}

72 73 74 75 76 77
	/**
	 * @param mixed $data the data to be formatted
	 * @param string $xml the expected XML body
	 * @dataProvider formatArrayDataProvider
	 */
	public function testFormatArrays($data, $xml)
Qiang Xue committed
78 79
	{
		$head = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
80 81 82 83
		$this->response->data = $data;
		$this->formatter->format($this->response);
		$this->assertEquals($head . $xml, $this->response->content);
	}
Qiang Xue committed
84

85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
	public function formatArrayDataProvider()
	{
		return array(
			array(array(), "<response/>\n"),
			array(array(1, 'abc'), "<response><item>1</item><item>abc</item></response>\n"),
			array(array(
				'a' => 1,
				'b' => 'abc',
			), "<response><a>1</a><b>abc</b></response>\n"),
			array(array(
				1,
				'abc',
				array(2, 'def'),
				true,
			), "<response><item>1</item><item>abc</item><item><item>2</item><item>def</item></item><item>1</item></response>\n"),
			array(array(
				'a' => 1,
				'b' => 'abc',
				'c' => array(2, '<>'),
				true,
			), "<response><a>1</a><b>abc</b><c><item>2</item><item>&lt;&gt;</item></c><item>1</item></response>\n"),
		);
Qiang Xue committed
107 108
	}

109 110 111 112 113 114
	/**
	 * @param mixed $data the data to be formatted
	 * @param string $xml the expected XML body
	 * @dataProvider formatObjectDataProvider
	 */
	public function testFormatObjects($data, $xml)
Qiang Xue committed
115 116
	{
		$head = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
117 118 119 120
		$this->response->data = $data;
		$this->formatter->format($this->response);
		$this->assertEquals($head . $xml, $this->response->content);
	}
Qiang Xue committed
121

122 123 124 125 126 127 128 129 130 131 132 133 134
	public function formatObjectDataProvider()
	{
		return array(
			array(new Post(123, 'abc'), "<response><Post><id>123</id><title>abc</title></Post></response>\n"),
			array(array(
				new Post(123, 'abc'),
				new Post(456, 'def'),
			), "<response><Post><id>123</id><title>abc</title></Post><Post><id>456</id><title>def</title></Post></response>\n"),
			array(array(
				new Post(123, '<>'),
				'a' => new Post(456, 'def'),
			), "<response><Post><id>123</id><title>&lt;&gt;</title></Post><a><Post><id>456</id><title>def</title></Post></a></response>\n"),
		);
Qiang Xue committed
135 136
	}
}