table = new CI_table(); $this->ci_instance($obj); $this->table = $obj->table; } // Setter Methods // -------------------------------------------------------------------- public function testSetTemplate() { $this->assertFalse($this->table->set_template('not an array')); $template = array( 'a' => 'b' ); $this->table->set_template($template); $this->assertEquals($template, $this->table->template); } public function testSetEmpty() { $this->table->set_empty('nada'); $this->assertEquals('nada', $this->table->empty_cells); } public function testSetCaption() { $this->table->set_caption('awesome cap'); $this->assertEquals('awesome cap', $this->table->caption); } /* * @depends testPrepArgs */ public function testSetHeading() { // uses _prep_args internally, so we'll just do a quick // check to verify that func_get_args and prep_args are // being called. $this->table->set_heading('name', 'color', 'size'); $this->assertEquals( array( array('data' => 'name'), array('data' => 'color'), array('data' => 'size') ), $this->table->heading ); } /* * @depends testPrepArgs */ public function testAddRow() { // uses _prep_args internally, so we'll just do a quick // check to verify that func_get_args and prep_args are // being called. $this->table->add_row('my', 'pony', 'sings'); $this->table->add_row('your', 'pony', 'stinks'); $this->table->add_row('my pony', '>', 'your pony'); $this->assertEquals(count($this->table->rows), 3); $this->assertEquals( array( array('data' => 'your'), array('data' => 'pony'), array('data' => 'stinks') ), $this->table->rows[1] ); } // Uility Methods // -------------------------------------------------------------------- public function testPrepArgs() { $expected = array( array('data' => 'name'), array('data' => 'color'), array('data' => 'size') ); // test what would be discreet args, // basically means a single array as the calling method // will use func_get_args() $this->assertEquals( $expected, $this->table->_prep_args(array( 'name', 'color', 'size' )), 'discreet'); // test what would be a single array argument. Again, nested // due to func_get_args on calling methods $this->assertEquals( $expected, $this->table->_prep_args(array( array('name', 'color', 'size') )), 'array'); // with cell attributes // need to add that new argument row to our expected outcome $expected[] = array('data' => 'weight', 'class' => 'awesome'); $this->assertEquals( $expected, $this->table->_prep_args(array( array('name', 'color', 'size', array('data' => 'weight', 'class' => 'awesome') ) )), 'attributes'); } public function testDefaultTemplateKeys() { $deft_template = $this->table->_default_template(); $keys = array( 'table_open', 'thead_open', 'thead_close', 'heading_row_start', 'heading_row_end', 'heading_cell_start', 'heading_cell_end', 'tbody_open', 'tbody_close', 'row_start', 'row_end', 'cell_start', 'cell_end', 'row_alt_start', 'row_alt_end', 'cell_alt_start', 'cell_alt_end', 'table_close' ); foreach ($keys as $key) { $this->assertArrayHasKey($key, $deft_template); } } public function testCompileTemplate() { $this->assertFalse($this->table->set_template('invalid_junk')); // non default key $this->table->set_template(array('nonsense' => 'foo')); $this->table->_compile_template(); $this->assertArrayHasKey('nonsense', $this->table->template); $this->assertEquals('foo', $this->table->template['nonsense']); // override default $this->table->set_template(array('table_close' => '')); $this->table->_compile_template(); $this->assertArrayHasKey('table_close', $this->table->template); $this->assertEquals('', $this->table->template['table_close']); } public function testMakeColumns() { // Test bogus parameters $this->assertFalse($this->table->make_columns('invalid_junk')); $this->assertFalse( $this->table->make_columns(array())); // $this->assertFalse( // $this->table->make_columns(array('one', 'two')), // '2.5' // not an integer! // ); // Now on to the actual column creation $five_values = array( 'Laura', 'Red', '15', 'Katie', 'Blue' ); // No column count - no changes to the array $this->assertEquals( $five_values, $this->table->make_columns($five_values) ); // Column count of 3 leaves us with one   $this->assertEquals( array( array('Laura', 'Red', '15'), array('Katie', 'Blue', ' ') ), $this->table->make_columns($five_values, 3) ); $this->markTestSkipped('Look at commented assertFalse above'); } public function testClear() { $this->table->set_heading('Name', 'Color', 'Size'); // Make columns changes auto_heading $rows = $this->table->make_columns(array( 'Laura', 'Red', '15', 'Katie', 'Blue' ), 3); foreach ($rows as $row) { $this->table->add_row($row); } $this->assertFalse($this->table->auto_heading); $this->assertEquals(count($this->table->heading), 3); $this->assertEquals(count($this->table->rows), 2); $this->table->clear(); $this->assertTrue($this->table->auto_heading); $this->assertEmpty($this->table->heading); $this->assertEmpty($this->table->rows); } public function testSetFromArray() { $this->assertFalse($this->table->_set_from_array('bogus')); $this->assertFalse($this->table->_set_from_array(array())); $data = array( array('name', 'color', 'number'), array('Laura', 'Red', '22'), array('Katie', 'Blue') ); $this->table->_set_from_array($data, FALSE); $this->assertEmpty($this->table->heading); $this->table->clear(); $expected_heading = array( array('data' => 'name'), array('data' => 'color'), array('data' => 'number') ); $expected_second = array( array('data' => 'Katie'), array('data' => 'Blue'), ); $this->table->_set_from_array($data); $this->assertEquals(count($this->table->rows), 2); $this->assertEquals( $expected_heading, $this->table->heading ); $this->assertEquals( $expected_second, $this->table->rows[1] ); } function testSetFromObject() { $this->markTestSkipped('Not yet implemented.'); } // Test main generate method // -------------------------------------------------------------------- }