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
|
# --
# Copyright (C) 2001-2021 OTRS AG, https://otrs.com/
# Copyright (C) 2021 Znuny GmbH, https://znuny.org/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see https://www.gnu.org/licenses/gpl-3.0.txt.
# --
## no critic (Modules::RequireExplicitPackage)
use strict;
use warnings;
use utf8;
use vars (qw($Self));
# get selenium object
my $Selenium = $Kernel::OM->Get('Kernel::System::UnitTest::Selenium');
$Selenium->RunTest(
sub {
# get helper object
my $HelperObject = $Kernel::OM->Get('Kernel::System::UnitTest::Helper');
my $IsITSMInstalled = $Kernel::OM->Get('Kernel::System::Util')->IsITSMInstalled();
# enable the services
$HelperObject->ConfigSettingChange(
Valid => 1,
Key => 'Ticket::Service',
Value => '1',
);
# don't keep children services
$HelperObject->ConfigSettingChange(
Valid => 1,
Key => 'Ticket::Service::KeepChildren',
Value => '0',
);
# create test user and login
my $TestUserLogin = $HelperObject->TestUserCreate(
Groups => [ 'admin', 'users' ],
) || die "Did not get test user";
$Selenium->Login(
Type => 'Agent',
User => $TestUserLogin,
Password => $TestUserLogin,
);
# get test user ID
my $TestUserID = $Kernel::OM->Get('Kernel::System::User')->UserLookup(
UserLogin => $TestUserLogin,
);
# get service object
my $ServiceObject = $Kernel::OM->Get('Kernel::System::Service');
# create two test services
my @ServiceIDs;
my @ServiceNames;
my %ITSMServiceValues;
if ($IsITSMInstalled) {
$ITSMServiceValues{TypeID} = 1;
$ITSMServiceValues{Criticality} = '3 normal';
}
for my $Service (qw(Parent Child)) {
my $ServiceName = $Service . 'Service' . $HelperObject->GetRandomID();
my $ServiceID = $ServiceObject->ServiceAdd(
Name => $ServiceName,
ValidID => 2, # invalid
Comment => 'Selenium Test',
UserID => 1,
%ITSMServiceValues,
);
$Self->True(
$ServiceID,
"Service ID $ServiceID is created",
);
push @ServiceIDs, $ServiceID;
push @ServiceNames, $ServiceName;
}
# update second service to be child of first one and enable it
my $Success = $ServiceObject->ServiceUpdate(
ServiceID => $ServiceIDs[1],
Name => $ServiceNames[1],
ParentID => $ServiceIDs[0],
ValidID => 1,
UserID => 1,
%ITSMServiceValues,
);
$Self->True(
$Success,
"Service ID $ServiceIDs[1] is now child service"
);
my $ScriptAlias = $Kernel::OM->Get('Kernel::Config')->Get('ScriptAlias');
# go to agent preferences
$Selenium->VerifiedGet(
"${ScriptAlias}index.pl?Action=AgentPreferences;Subaction=Group;Group=NotificationSettings"
);
# verify child service is not shown
$Self->Is(
$Selenium->execute_script(
"return \$('#ServiceID option[value=\"$ServiceIDs[1]\"]').length;"
),
0,
'Child service is not shown',
);
# turn on keep children setting
$HelperObject->ConfigSettingChange(
Valid => 1,
Key => 'Ticket::Service::KeepChildren',
Value => '1',
);
# refresh the page
$Selenium->VerifiedGet(
"${ScriptAlias}index.pl?Action=AgentPreferences;Subaction=Group;Group=NotificationSettings"
);
# verify child service is shown (bug#11816)
$Self->Is(
$Selenium->execute_script(
"return \$('#ServiceID option[value=\"$ServiceIDs[1]\"]').length;"
),
1,
'Child service is shown',
);
# add child service to 'My Services' preference
$Selenium->InputFieldValueSet(
Element => '#ServiceID',
Value => $ServiceIDs[1],
);
# save the setting, wait for the ajax call to finish and check if success sign is shown
$Selenium->execute_script(
"\$('#ServiceID').closest('.WidgetSimple').find('.SettingUpdateBox').find('button').trigger('click');"
);
$Selenium->WaitFor(
JavaScript =>
"return \$('#ServiceID').closest('.WidgetSimple').hasClass('HasOverlay')"
);
$Selenium->WaitFor(
JavaScript =>
"return \$('#ServiceID').closest('.WidgetSimple').find('.fa-check').length"
);
$Selenium->WaitFor(
JavaScript =>
"return !\$('#ServiceID').closest('.WidgetSimple').hasClass('HasOverlay')"
);
# get DB object
my $DBObject = $Kernel::OM->Get('Kernel::System::DB');
# delete personal services connection
$Success = $DBObject->Do(
SQL => "DELETE FROM personal_services WHERE service_id = $ServiceIDs[1]",
);
$Self->True(
$Success,
"Delete personal service connection",
);
# delete created test services
for my $Index ( 0 .. 1 ) {
$Success = $DBObject->Do(
SQL => "DELETE FROM service WHERE id = $ServiceIDs[$Index]",
);
$Self->True(
$Success,
"Delete service - $ServiceIDs[$Index]",
);
}
# make sure the cache is correct
$Kernel::OM->Get('Kernel::System::Cache')->CleanUp(
Type => 'Service',
);
},
);
1;
|