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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
|
<?php
class Table_test extends CI_TestCase {
public function set_up()
{
$this->table = new Mock_Libraries_Table();
$this->ci_instance_var('table', $this->table);
}
// Setter Methods
// --------------------------------------------------------------------
public function test_set_template()
{
$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 test_set_empty()
{
$this->table->set_empty('nada');
$this->assertEquals('nada', $this->table->empty_cells);
}
public function test_set_caption()
{
$this->table->set_caption('awesome cap');
$this->assertEquals('awesome cap', $this->table->caption);
}
/**
* @depends test_prep_args
*/
#[PHPUnit\Framework\Attributes\Depends('test_prep_args')]
public function test_set_heading()
{
// 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 test_prep_args
*/
#[PHPUnit\Framework\Attributes\Depends('test_prep_args')]
public function test_add_row()
{
// 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->assertCount(3, $this->table->rows);
$this->assertEquals(
array(
array('data' => 'your'),
array('data' => 'pony'),
array('data' => 'stinks')
),
$this->table->rows[1]
);
}
// Uility Methods
// --------------------------------------------------------------------
public function test_prep_args()
{
$expected = array(
array('data' => 'name'),
array('data' => 'color'),
array('data' => 'size')
);
$this->assertEquals(
$expected,
$this->table->prep_args(array('name', 'color', 'size'))
);
// 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('name', 'color', 'size', array('data' => 'weight', 'class' => 'awesome')))
);
}
public function test_default_template_keys()
{
$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, $this->table->default_template());
}
}
public function test_compile_template()
{
$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' => '</table junk>'));
$this->table->compile_template();
$this->assertArrayHasKey('table_close', $this->table->template);
$this->assertEquals('</table junk>', $this->table->template['table_close']);
}
public function test_make_columns()
{
// 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'));
// 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)
);
}
public function test_clear()
{
$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->assertCount(3, $this->table->heading);
$this->assertCount(2, $this->table->rows);
$this->table->clear();
$this->assertTrue($this->table->auto_heading);
$this->assertEmpty($this->table->heading);
$this->assertEmpty($this->table->rows);
}
public function test_set_from_array()
{
$data = array(
array('name', 'color', 'number'),
array('Laura', 'Red', '22'),
array('Katie', 'Blue')
);
$this->table->auto_heading = FALSE;
$this->table->set_from_array($data);
$this->assertEmpty($this->table->heading);
$this->table->clear();
$this->table->set_from_array($data);
$this->assertCount(2, $this->table->rows);
$expected = array(
array('data' => 'name'),
array('data' => 'color'),
array('data' => 'number')
);
$this->assertEquals($expected, $this->table->heading);
$expected = array(
array('data' => 'Katie'),
array('data' => 'Blue'),
);
$this->assertEquals($expected, $this->table->rows[1]);
}
public function test_set_from_object()
{
// This needs to be passed by reference to CI_DB_result::__construct()
$dummy = new stdClass();
$dummy->conn_id = NULL;
$dummy->result_id = NULL;
$db_result = new DB_result_dummy($dummy);
$this->table->set_from_db_result($db_result);
$expected = array(
array('data' => 'name'),
array('data' => 'email')
);
$this->assertEquals($expected, $this->table->heading);
$expected = array(
'name' => array('data' => 'Foo Bar'),
'email' => array('data' => 'foo@bar.com'),
);
$this->assertEquals($expected, $this->table->rows[1]);
}
public function test_generate()
{
// Prepare the data
$data = array(
array('Name', 'Color', 'Size'),
array('Fred', 'Blue', 'Small'),
array('Mary', 'Red', 'Large'),
array('John', 'Green', 'Medium')
);
$table = $this->table->generate($data);
// Test the table header
$this->assertEquals(1, substr_count($table, '<th>Name</th>'));
$this->assertEquals(1, substr_count($table, '<th>Color</th>'));
$this->assertEquals(1, substr_count($table, '<th>Size</th>'));
// Test the first entry
$this->assertEquals(1, substr_count($table, '<td>Fred</td>'));
$this->assertEquals(1, substr_count($table, '<td>Blue</td>'));
$this->assertEquals(1, substr_count($table, '<td>Small</td>'));
}
}
// We need this for the _set_from_db_result() test
class DB_result_dummy extends CI_DB_result
{
public function list_fields()
{
return array('name', 'email');
}
public function result_array()
{
return array(
array('name' => 'John Doe', 'email' => 'john@doe.com'),
array('name' => 'Foo Bar', 'email' => 'foo@bar.com')
);
}
}
|