5 require_once(
"libs/composer/vendor/autoload.php");
6 require_once(__DIR__ .
"/../../Base.php");
8 use \ILIAS\UI\Component as
C;
17 return new \ILIAS\UI\Implementation\Component\Counter\Factory();
24 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Counter\\Factory",
$f);
26 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Counter\\Counter",
$f->status(0));
27 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Counter\\Counter",
$f->novelty(0));
37 $c =
$f->status($number);
39 $this->assertNotNull(
$c);
40 $this->assertEquals(
C\Counter\Counter::STATUS,
$c->getType());
41 $this->assertEquals($number,
$c->getNumber());
51 $c =
$f->novelty($number);
53 $this->assertNotNull(
$c);
54 $this->assertEquals(
C\Counter\Counter::NOVELTY,
$c->getType());
55 $this->assertEquals($number,
$c->getNumber());
60 $this->expectException(\InvalidArgumentException::class);
61 new \ILIAS\UI\Implementation\Component\Counter\Counter(
"FOO", 1);
69 $this->expectException(\InvalidArgumentException::class);
71 $f->status($no_number);
76 return array( array(-13)
85 return array( array(
"foo")
93 ,
"novelty" =>
"badge badge-notify il-counter-novelty" 103 $c =
$f->$type($number);
107 $css_classes = self::$canonical_css_classes[
$type];
108 $expected =
"<span class=\"il-counter\"><span class=\"$css_classes\">$number</span></span>";
114 return array( array(
"status", 42)
115 , array(
"novelty", 13)
117 , array(
"novelty", 23)
test_render_status($type, $number)
counter_type_and_number_provider
Provides common functionality for UI tests.
test_known_counters_only()
counter_type_and_number_provider()
test_int_numbers_only($no_number)
no_number_provider
assertHTMLEquals($expected_html_as_string, $html_as_string)
test_implements_factory_interface()
static $canonical_css_classes
Defines tests that a counter implementation should pass.
test_status_counter($number)
number_provider
test_novelty_counter($number)
number_provider
getDefaultRenderer(JavaScriptBinding $js_binding=null, $with_stub_renderings=[])