From 06f945f27840b53e57795dadbc38e76f7e11ab1c Mon Sep 17 00:00:00 2001 From: Horus3 Date: Mon, 24 Feb 2014 16:42:14 +0100 Subject: init --- .../Zend/Gdata/Spreadsheets/CellQueryTest.php | 138 +++++++++++++++++++++ 1 file changed, 138 insertions(+) create mode 100644 zend/tests/Zend/Gdata/Spreadsheets/CellQueryTest.php (limited to 'zend/tests/Zend/Gdata/Spreadsheets/CellQueryTest.php') diff --git a/zend/tests/Zend/Gdata/Spreadsheets/CellQueryTest.php b/zend/tests/Zend/Gdata/Spreadsheets/CellQueryTest.php new file mode 100644 index 0000000..997c926 --- /dev/null +++ b/zend/tests/Zend/Gdata/Spreadsheets/CellQueryTest.php @@ -0,0 +1,138 @@ +docQuery = new Zend_Gdata_Spreadsheets_CellQuery(); + } + + public function testMinRow() + { + $this->assertTrue($this->docQuery->getMinRow() == null); + $this->docQuery->setMinRow('1'); + $this->assertTrue($this->docQuery->getMinRow() == '1'); + $this->assertTrue($this->docQuery->getQueryString() == '?min-row=1'); + $this->docQuery->setMinRow(null); + $this->assertTrue($this->docQuery->getMinRow() == null); + } + + public function testMaxRow() + { + $this->assertTrue($this->docQuery->getMaxRow() == null); + $this->docQuery->setMaxRow('2'); + $this->assertTrue($this->docQuery->getMaxRow() == '2'); + $this->assertTrue($this->docQuery->getQueryString() == '?max-row=2'); + $this->docQuery->setMaxRow(null); + $this->assertTrue($this->docQuery->getMaxRow() == null); + } + + public function testMinCol() + { + $this->assertTrue($this->docQuery->getMinCol() == null); + $this->docQuery->setMinCol('3'); + $this->assertTrue($this->docQuery->getMinCol() == '3'); + $this->assertTrue($this->docQuery->getQueryString() == '?min-col=3'); + $this->docQuery->setMinCol(null); + $this->assertTrue($this->docQuery->getMinCol() == null); + } + + public function testMaxCol() + { + $this->assertTrue($this->docQuery->getMaxCol() == null); + $this->docQuery->setMaxCol('4'); + $this->assertTrue($this->docQuery->getMaxCol() == '4'); + $this->assertTrue($this->docQuery->getQueryString() == '?max-col=4'); + $this->docQuery->setMaxCol(null); + $this->assertTrue($this->docQuery->getMaxCol() == null); + } + + public function testRange() + { + $this->assertTrue($this->docQuery->getRange() == null); + $this->docQuery->setRange('A1:B4'); + $this->assertTrue($this->docQuery->getRange() == 'A1:B4'); + $this->assertTrue($this->docQuery->getQueryString() == '?range=A1%3AB4'); + $this->docQuery->setRange(null); + $this->assertTrue($this->docQuery->getRange() == null); + } + + public function testReturnEmpty() + { + $this->assertTrue($this->docQuery->getReturnEmpty() == null); + $this->docQuery->setReturnEmpty('false'); + $this->assertTrue($this->docQuery->getReturnEmpty() == 'false'); + $this->assertTrue($this->docQuery->getQueryString() == '?return-empty=false'); + $this->docQuery->setReturnEmpty(null); + $this->assertTrue($this->docQuery->getReturnEmpty() == null); + } + + public function testWorksheetId() + { + $this->assertTrue($this->docQuery->getWorksheetId() == 'default'); + $this->docQuery->setWorksheetId('123'); + $this->assertTrue($this->docQuery->getWorksheetId() == '123'); + } + + public function testSpreadsheetKey() + { + $this->assertTrue($this->docQuery->getSpreadsheetKey() == null); + $this->docQuery->setSpreadsheetKey('abc'); + $this->assertTrue($this->docQuery->getSpreadsheetKey() == 'abc'); + } + + public function testCellId() + { + $this->assertTrue($this->docQuery->getCellId() == null); + $this->docQuery->setCellId('xyz'); + $this->assertTrue($this->docQuery->getCellId() == 'xyz'); + } + + public function testProjection() + { + $this->assertTrue($this->docQuery->getProjection() == 'full'); + $this->docQuery->setProjection('abc'); + $this->assertTrue($this->docQuery->getProjection() == 'abc'); + } + + public function testVisibility() + { + $this->assertTrue($this->docQuery->getVisibility() == 'private'); + $this->docQuery->setVisibility('xyz'); + $this->assertTrue($this->docQuery->getVisibility() == 'xyz'); + } + +} -- cgit v1.2.3