19 declare(strict_types=1);
39 require_once __DIR__ .
'/ContainerMock.php';
47 $this->assertInstanceOf(DefaultMappings::class,
new DefaultMappings(
'foo', $this->mock(Container::class)));
52 $container = $this->mockTree(Container::class, [
54 'factory' => $this->mock(UI::class),
55 'mainTemplate' => $this->mock(ilGlobalTemplateInterface::class),
57 'language' => $this->mockMethod(ilLanguage::class,
'getInstalledLanguages', [], []),
58 'rbac' => $this->mockMethod(RBACServices::class,
'review', [], $this->mock(ilRbacReview::class)),
60 $container->method(
'offsetGet')->with(
'ilObjDataCache')->willReturn($this->mock(ilObjectDataCache::class));
63 $result = $instance->conditionDefinitions();
64 $definitions = $result->choices();
65 $this->assertSame(
'usr_country', $result->defaultSelection());
66 $this->assertSame(3, count($definitions));
67 $this->assertInstanceOf(RoleDefinition::class, $definitions[
'usr_global_role']);
68 $this->assertInstanceOf(UserLanguageDefinition::class, $definitions[
'usr_language']);
69 $this->assertInstanceOf(UserCountryDefinition::class, $definitions[
'usr_country']);
74 $legacy = $this->mock(Legacy\Content::class);
75 $legacy_factory = $this->mock(Legacy\Factory::class);
77 ->expects($this->once())
79 ->willReturn($legacy);
81 $container = $this->mockTree(Container::class, [
82 'ui' => [
'factory' => $this->mockMethod(UIFactory::class,
'legacy', [], $legacy_factory)],
86 $map = $instance->contentAsComponent();
87 $this->assertSame([
'html'], array_keys($map));
88 $this->assertSame($legacy, $map[
'html']($this->mockTree(DocumentContent::class, [
'value' =>
'bar'])));
testConditionDefinitions()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...