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
|
# --
# 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.
# --
use strict;
use warnings;
use utf8;
use vars (qw($Self));
use Kernel::Config;
my $Selenium = $Kernel::OM->Get('Kernel::System::UnitTest::Selenium');
$Selenium->RunTest(
sub {
my $HelperObject = $Kernel::OM->Get('Kernel::System::UnitTest::Helper');
my $DynamicFieldObject = $Kernel::OM->Get('Kernel::System::DynamicField');
my $Home = $Kernel::OM->Get('Kernel::Config')->Get("Home");
# Create test user and login.
my $TestUserLogin = $HelperObject->TestUserCreate(
Groups => ['admin'],
) || die "Did not get test user";
# Add needed dynamic field, but in wrong format.
my $ID = $DynamicFieldObject->DynamicFieldAdd(
Name => 'PreProcApplicationRecorded',
Label => 'Days Remaining',
FieldType => 'Text',
ObjectType => 'Ticket',
FieldOrder => 10001,
Config => {},
ValidID => 1,
UserID => 1,
);
$Self->True(
$ID,
"Dynamic field created.",
);
$Selenium->Login(
Type => 'Agent',
User => $TestUserLogin,
Password => $TestUserLogin,
);
my $TestUserID = $Kernel::OM->Get('Kernel::System::User')->UserLookup(
UserLogin => $TestUserLogin,
);
my $ScriptAlias = $Kernel::OM->Get('Kernel::Config')->Get('ScriptAlias');
$Selenium->VerifiedGet("${ScriptAlias}index.pl?Action=AdminProcessManagement");
# Select Application for leave process.
$Selenium->InputFieldValueSet(
Element => '#ExampleProcess',
Value => 'Application_for_leave.yml'
);
$Selenium->find_element( "#ExampleProcesses button", "css" )->VerifiedClick();
# Check error message.
$Self->True(
index(
$Selenium->get_page_source(),
"Dynamic field PreProcApplicationRecorded already exists, but definition is wrong."
) > -1,
"Error message is shown.",
);
# Delete wrong dynamic field.
my $Success = $DynamicFieldObject->DynamicFieldDelete(
ID => $ID,
UserID => 1,
Reorder => 1,
);
$Self->True(
$Success,
"Dynamic field deleted successfully.",
);
# Try to import process once again, but this time it should work.
# Navigate to AdminProcessManagement screen.
$Selenium->VerifiedGet("${ScriptAlias}index.pl?Action=AdminProcessManagement");
# Select Application for leave process.
$Selenium->InputFieldValueSet(
Element => '#ExampleProcess',
Value => 'Application_for_leave.yml'
);
$Selenium->find_element( "#ExampleProcesses button", "css" )->VerifiedClick();
my $ProcessFound = $Selenium->execute_script(
"return \$(\".ContentColumn a.AsBlock:contains('Application for leave')\").length;"
);
$Self->True(
$ProcessFound,
"Application for leave is imported."
);
# Check imported dynamic fields (from pre .pm file).
my $DynamicFieldList = $Kernel::OM->Get('Kernel::System::DynamicField')->DynamicFieldList(
ObjectType => 'Ticket',
ResultType => 'HASH',
);
for my $DynamicFieldNeeded (
qw(PreProcApplicationRecorded PreProcDaysRemaining PreProcVacationStart
PreProcVacationEnd PreProcDaysUsed PreProcEmergencyTelephone PreProcRepresentationBy
PreProcProcessStatus PreProcApprovedSuperior PreProcVacationInfo
)
)
{
my $Found = grep { $DynamicFieldNeeded eq $DynamicFieldList->{$_} } keys %{$DynamicFieldList};
$Self->True(
$Found,
"Dynamic field is found($DynamicFieldNeeded)",
);
}
# To check if _post.pm file is executed properly, compare sysconfig with expected value.
my $SysConfigObject = $Kernel::OM->Get('Kernel::System::SysConfig');
my $Value;
for my $Key (qw( ProcessWidgetDynamicFieldGroups ProcessWidgetDynamicField)) {
%{ $Value->{$Key} } = $SysConfigObject->SettingGet(
Name => "Ticket::Frontend::AgentTicketZoom###$Key",
);
}
my %ExpectedValue = (
'ProcessWidgetDynamicFieldGroups' => {
'Application for Leave - Approval and HR data' =>
'PreProcApprovedSuperior,PreProcApplicationRecorded,PreProcVacationInfo',
'Application for Leave - Request Data' =>
'PreProcVacationStart,PreProcVacationEnd,PreProcDaysUsed,PreProcDaysRemaining,' .
'PreProcEmergencyTelephone,PreProcRepresentationBy',
},
'ProcessWidgetDynamicField' => {
'PreProcApplicationRecorded' => '1',
'PreProcDaysRemaining' => '1',
'PreProcVacationStart' => '1',
'PreProcVacationEnd' => '1',
'PreProcDaysUsed' => '1',
'PreProcEmergencyTelephone' => '1',
# 'PreProcRepresentationBy' => '1',
# 'PreProcProcessStatus' => '1',
'PreProcApprovedSuperior' => '1',
'PreProcVacationInfo' => '1',
},
);
for my $Key ( sort keys %ExpectedValue ) {
for my $InnerKey ( sort keys %{ $ExpectedValue{$Key} } ) {
$Self->True(
$Value->{$Key},
"Key $Key is present.",
);
if ( $Value->{$Key} ) {
$Self->Is(
$Value->{$Key}->{EffectiveValue}->{$InnerKey},
$ExpectedValue{$Key}->{$InnerKey},
"Check Ticket::Frontend::AgentTicketZoom###$Key###$InnerKey value."
);
}
}
}
# Delete wrong dynamic field.
my $DynamicFieldData = $DynamicFieldObject->DynamicFieldGet(
Name => 'PreProcApplicationRecorded',
);
$Success = $DynamicFieldObject->DynamicFieldDelete(
ID => $DynamicFieldData->{ID},
UserID => 1,
Reorder => 1,
);
$Self->True(
$Success,
"Dynamic field deleted successfully.",
);
# Reset settings to the default value.
my @UpdatedSettings;
for my $Key (qw( ProcessWidgetDynamicFieldGroups ProcessWidgetDynamicField)) {
my $Guid = $SysConfigObject->SettingLock(
UserID => 1,
DefaultID => $Value->{$Key}->{DefaultID},
Force => 1,
);
$Success = $SysConfigObject->SettingReset(
Name => "Ticket::Frontend::AgentTicketZoom###$Key",
ExclusiveLockGUID => $Guid,
UserID => 1,
);
$Self->True(
$Success,
"Setting Ticket::Frontend::AgentTicketZoom###$Key reset to the default value.",
);
$SysConfigObject->SettingUnlock(
DefaultID => $Value->{$Key}->{DefaultID},
);
push @UpdatedSettings, $Value->{$Key}->{Name};
}
my %DeploymentResult = $SysConfigObject->ConfigurationDeploy(
Comments => "Deployed by Selenium test",
UserID => 1,
Force => 1,
DirtySettings => \@UpdatedSettings,
);
if ( !$DeploymentResult{Success} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "System was unable to deploy settings needed for Application for leave process!"
);
}
}
);
1;
|