assertSame('code25', $this->_object->getType()); } public function testChecksum() { $this->assertSame(5, $this->_object->getChecksum('0123456789')); $this->assertSame(0, $this->_object->getChecksum('13')); } public function testSetText() { $this->_object->setText('0123456789'); $this->assertSame('0123456789', $this->_object->getRawText()); $this->assertSame('0123456789', $this->_object->getText()); $this->assertSame('0123456789', $this->_object->getTextToDisplay()); } public function testSetTextWithOddNumberOfCharacters() { $this->_object->setText('123456789'); $this->assertSame('123456789', $this->_object->getRawText()); $this->assertSame('123456789', $this->_object->getText()); $this->assertSame('123456789', $this->_object->getTextToDisplay()); } public function testSetTextWithSpaces() { $this->_object->setText(' 0123456789 '); $this->assertSame('0123456789', $this->_object->getRawText()); $this->assertSame('0123456789', $this->_object->getText()); $this->assertSame('0123456789', $this->_object->getTextToDisplay()); } public function testSetTextWithChecksum() { $this->_object->setText('0123456789'); $this->_object->setWithChecksum(true); $this->assertSame('0123456789', $this->_object->getRawText()); $this->assertSame('01234567895', $this->_object->getText()); $this->assertSame('0123456789', $this->_object->getTextToDisplay()); } public function testSetTextWithChecksumDisplayed() { $this->_object->setText('0123456789'); $this->_object->setWithChecksum(true); $this->_object->setWithChecksumInText(true); $this->assertSame('0123456789', $this->_object->getRawText()); $this->assertSame('01234567895', $this->_object->getText()); $this->assertSame('01234567895', $this->_object->getTextToDisplay()); } public function testBadTextAlwaysAllowed() { $this->_object->setText('a'); $this->assertSame('a', $this->_object->getText()); } /** * @expectedException Zend_Barcode_Object_Exception */ public function testBadTextDetectedIfChecksumWished() { $this->_object->setText('a'); $this->_object->setWithChecksum(true); $this->_object->getText(); } public function testCheckGoodParams() { $this->_object->setText('0123456789'); $this->assertTrue($this->_object->checkParams()); } /** * @expectedException Zend_Barcode_Object_Exception */ public function testCheckParamsWithLowRatio() { $this->_object->setText('0123456789'); $this->_object->setBarThinWidth(21); $this->_object->setBarThickWidth(40); $this->_object->checkParams(); } /** * @expectedException Zend_Barcode_Object_Exception */ public function testCheckParamsWithHighRatio() { $this->_object->setText('0123456789'); $this->_object->setBarThinWidth(20); $this->_object->setBarThickWidth(61); $this->_object->checkParams(); } public function testGetKnownWidthWithoutOrientation() { $this->_object->setText('0123456789'); $this->assertEquals(180, $this->_object->getWidth()); $this->_object->setWithQuietZones(false); $this->assertEquals(160, $this->_object->getWidth(true)); } public function testCompleteGeneration() { $this->_object->setText('0123456789'); $this->_object->draw(); $instructions = $this->loadInstructionsFile('Code25_0123456789_instructions'); $this->assertEquals($instructions, $this->_object->getInstructions()); } public function testCompleteGenerationWithStretchText() { $this->_object->setText('0123456789'); $this->_object->setStretchText(true); $this->_object->draw(); $instructions = $this->loadInstructionsFile( 'Code25_0123456789_stretchtext_instructions'); $this->assertEquals($instructions, $this->_object->getInstructions()); } public function testCompleteGenerationWithBorder() { $this->_object->setText('0123456789'); $this->_object->setWithBorder(true); $this->_object->draw(); $instructions = $this->loadInstructionsFile( 'Code25_0123456789_border_instructions'); $this->assertEquals($instructions, $this->_object->getInstructions()); } public function testCompleteGenerationWithOrientation() { $this->_object->setText('0123456789'); $this->_object->setOrientation(60); $this->_object->draw(); $instructions = $this->loadInstructionsFile( 'Code25_0123456789_oriented_instructions'); $this->assertEquals($instructions, $this->_object->getInstructions()); } public function testCompleteGenerationWithStretchTextWithOrientation() { $this->_object->setText('0123456789'); $this->_object->setOrientation(60); $this->_object->setStretchText(true); $this->_object->draw(); $instructions = $this->loadInstructionsFile( 'Code25_0123456789_stretchtext_oriented_instructions'); $this->assertEquals($instructions, $this->_object->getInstructions()); } public function testCompleteGenerationWithBorderWithOrientation() { $this->_object->setText('0123456789'); $this->_object->setOrientation(60); $this->_object->setWithBorder(true); $this->_object->draw(); $instructions = $this->loadInstructionsFile( 'Code25_0123456789_border_oriented_instructions'); $this->assertEquals($instructions, $this->_object->getInstructions()); } }