Skip to content

Commit d173efd

Browse files
DmitryTsymbalokolesnyk
authored andcommitted
renaming
1 parent 9f55ad0 commit d173efd

File tree

5 files changed

+7
-10
lines changed

5 files changed

+7
-10
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
11-
<actionGroup name="StorefrontAssertAccountPasswordFieldsNotAvailableActionGroup">
11+
<actionGroup name="AssertStorefrontAccountPasswordFieldsNotAvailableActionGroup">
1212
<dontSee stepKey="dontSeeCurrentPasswordField" selector="{{StorefrontCustomerAccountInformationSection.currentPassword}}"/>
1313
<dontSee stepKey="dontSeeNewPasswordField" selector="{{StorefrontCustomerAccountInformationSection.newPassword}}"/>
1414
<dontSee stepKey="dontSeeConfirmPasswordField" selector="{{StorefrontCustomerAccountInformationSection.confirmNewPassword}}"/>

app/code/Magento/Security/Test/Mftf/Test/StorefrontAccountPasswordFieldsNotAvailableTest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<!-- Navigate to "Change Account Information" tab -->
3636
<actionGroup ref="StorefrontNavigateToAccountInformationChangeActionGroup" stepKey="goToCustomerEditPage"/>
3737
<!-- Assert Account Password Fields not Available -->
38-
<actionGroup ref="StorefrontAssertAccountPasswordFieldsNotAvailableActionGroup" stepKey="uncheckedCheckbox"/>
38+
<actionGroup ref="AssertStorefrontAccountPasswordFieldsNotAvailableActionGroup" stepKey="uncheckedCheckbox"/>
3939
<!-- END TEST BODY -->
4040

4141
</test>

app/code/Magento/Security/Test/Mftf/Test/StorefrontChangingCustomerPasswordTest.xml renamed to app/code/Magento/Security/Test/Mftf/Test/StorefrontChangeCustomerPasswordTest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<tests xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/testSchema.xsd">
11-
<test name="StorefrontChangingCustomerPasswordTest">
11+
<test name="StorefrontChangeCustomerPasswordTest">
1212
<annotations>
1313
<features value="Security"/>
1414
<stories value="Changing Customer's Password"/>

app/code/Magento/Security/Test/Mftf/Test/StorefrontChangingCustomerPasswordWithIncorrectDataTest.xml renamed to app/code/Magento/Security/Test/Mftf/Test/StorefrontChangeCustomerPasswordTestWithIncorrectDataTest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<tests xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/testSchema.xsd">
11-
<test name="StorefrontChangingCustomerPasswordTestWithIncorrectDataTest">
11+
<test name="StorefrontChangeCustomerPasswordTestWithIncorrectDataTest">
1212
<annotations>
1313
<features value="Security"/>
1414
<stories value="Changing Customer's Password With Incorrect Current Password"/>

dev/tests/functional/tests/app/Magento/Security/Test/TestCase/SecureChangingCustomerPasswordTest.xml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,32 +8,29 @@
88
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../vendor/magento/mtf/etc/variations.xsd">
99
<testCase name="Magento\Security\Test\TestCase\SecureChangingCustomerPasswordTest" summary="Secure Changing Customer Password" ticketId="MAGETWO-49043">
1010
<variation name="SecureChangingPasswordV1" summary="Change Password checkbox is checked, enter correct password">
11-
<data name="tag" xsi:type="string">severity:S1</data>
11+
<data name="tag" xsi:type="string">severity:S1, mftf_migrated:yes</data>
1212
<data name="initialCustomer/dataset" xsi:type="string">default</data>
1313
<data name="customer/data/current_password" xsi:type="string">123123^q</data>
1414
<data name="customer/data/password" xsi:type="string">123123Qa</data>
1515
<data name="customer/data/password_confirmation" xsi:type="string">123123Qa</data>
1616
<data name="check" xsi:type="string">1</data>
1717
<constraint name="Magento\Customer\Test\Constraint\AssertCustomerInfoSuccessSavedMessage" />
1818
<constraint name="Magento\Customer\Test\Constraint\AssertCustomerPasswordChanged" />
19-
<data name="tag" xsi:type="string">mftf_migrated:yes</data>
2019
</variation>
2120
<variation name="SecureChangingPasswordV2" summary="Change Password checkbox is checked, enter wrong password">
22-
<data name="tag" xsi:type="string">severity:S2</data>
21+
<data name="tag" xsi:type="string">severity:S2, mftf_migrated:yes</data>
2322
<data name="initialCustomer/dataset" xsi:type="string">default</data>
2423
<data name="customer/data/current_password" xsi:type="string">123123123</data>
2524
<data name="customer/data/password" xsi:type="string">123123Qa</data>
2625
<data name="customer/data/password_confirmation" xsi:type="string">123123Qa</data>
2726
<data name="check" xsi:type="string">1</data>
2827
<constraint name="Magento\Customer\Test\Constraint\AssertChangePasswordFailMessage" />
29-
<data name="tag" xsi:type="string">mftf_migrated:yes</data>
3028
</variation>
3129
<variation name="SecureChangingPasswordV3" summary="Change Password checkbox is unchecked">
32-
<data name="tag" xsi:type="string">severity:S3</data>
30+
<data name="tag" xsi:type="string">severity:S3, mftf_migrated:yes</data>
3331
<data name="initialCustomer/dataset" xsi:type="string">default</data>
3432
<data name="check" xsi:type="string">0</data>
3533
<constraint name="Magento\Security\Test\Constraint\AssertDefaultAccountInformation" />
36-
<data name="tag" xsi:type="string">mftf_migrated:yes</data>
3734
</variation>
3835
</testCase>
3936
</config>

0 commit comments

Comments
 (0)