diff --git a/browser/extensions/formautofill/test/browser/creditCard/browser.ini b/browser/extensions/formautofill/test/browser/creditCard/browser.ini index 91ff50a3f048..db92d47f8e9c 100644 --- a/browser/extensions/formautofill/test/browser/creditCard/browser.ini +++ b/browser/extensions/formautofill/test/browser/creditCard/browser.ini @@ -18,6 +18,7 @@ skip-if = (!debug && os == "mac") || (os == "win" && ccov) # perma-fail see Bug skip-if = ((os == "mac") || (os == 'linux') || (os == 'win')) [browser_creditCard_fill_cancel_login.js] skip-if = ((!debug && os == "mac") || (os == 'linux') || (os == 'win')) +[browser_creditCard_submission_normalized.js] [browser_editCreditCardDialog.js] skip-if = ((os == 'linux') || (os == "mac") || (os == 'win')) # perma-fail see Bug 1600059 [browser_insecure_form.js] diff --git a/browser/extensions/formautofill/test/browser/creditCard/browser_creditCard_submission_normalized.js b/browser/extensions/formautofill/test/browser/creditCard/browser_creditCard_submission_normalized.js new file mode 100644 index 000000000000..b63f471c541a --- /dev/null +++ b/browser/extensions/formautofill/test/browser/creditCard/browser_creditCard_submission_normalized.js @@ -0,0 +1,113 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ + +"use strict"; + +// We want to ensure that non-normalized credit card data is normalized +// correctly as part of the save credit card flow +add_task(async function test_new_submitted_card_is_normalized() { + await SpecialPowers.pushPrefEnv({ + set: [[CREDITCARDS_USED_STATUS_PREF, 0]], + }); + const testCard = { + "cc-name": "Test User", + "cc-number": "5038146897157463", + "cc-exp-month": "4", + "cc-exp-year": "25", + }; + const expectedData = { + "cc-name": "Test User", + "cc-number": "5038146897157463", + "cc-exp-month": "4", + // cc-exp-year should be normalized to 2025 + "cc-exp-year": "2025", + }; + let onChanged = waitForStorageChangedEvents("add"); + + await BrowserTestUtils.withNewTab( + { gBrowser, url: CREDITCARD_FORM_URL }, + async function(browser) { + let promiseShown = promiseNotificationShown(); + await focusUpdateSubmitForm(browser, { + focusSelector: "#cc-name", + newValues: { + "#cc-name": testCard["cc-name"], + "#cc-number": testCard["cc-number"], + "#cc-exp-month": testCard["cc-exp-month"], + "#cc-exp-year": testCard["cc-exp-year"], + }, + }); + + await promiseShown; + await clickDoorhangerButton(MAIN_BUTTON); + } + ); + + await onChanged; + + let creditCards = await getCreditCards(); + let savedCreditCard = creditCards[0]; + let decryptedNumber = await OSKeyStore.decrypt( + savedCreditCard["cc-number-encrypted"] + ); + savedCreditCard["cc-number"] = decryptedNumber; + for (let key in testCard) { + let expected = expectedData[key]; + let actual = savedCreditCard[key]; + Assert.equal(expected, actual, `${key} should match`); + } +}); + +add_task(async function test_updated_card_is_normalized() { + await SpecialPowers.pushPrefEnv({ + set: [[CREDITCARDS_USED_STATUS_PREF, 0]], + }); + const testCard = { + "cc-name": "Test User", + "cc-number": "5038146897157463", + "cc-exp-month": "11", + "cc-exp-year": "20", + }; + await saveCreditCard(testCard); + const expectedData = { + "cc-name": "Test User", + "cc-number": "5038146897157463", + "cc-exp-month": "10", + // cc-exp-year should be normalized to 2027 + "cc-exp-year": "2027", + }; + let onChanged = waitForStorageChangedEvents("update"); + + await BrowserTestUtils.withNewTab( + { gBrowser, url: CREDITCARD_FORM_URL }, + async function(browser) { + let promiseShown = promiseNotificationShown(); + await focusUpdateSubmitForm(browser, { + focusSelector: "#cc-name", + newValues: { + "#cc-name": testCard["cc-name"], + "#cc-number": testCard["cc-number"], + "#cc-exp-month": "10", + "#cc-exp-year": "27", + }, + }); + + await promiseShown; + await clickDoorhangerButton(MAIN_BUTTON); + } + ); + + await onChanged; + + let creditCards = await getCreditCards(); + let savedCreditCard = creditCards[0]; + savedCreditCard["cc-number"] = await OSKeyStore.decrypt( + savedCreditCard["cc-number-encrypted"] + ); + + for (let key in testCard) { + let expected = expectedData[key]; + let actual = savedCreditCard[key]; + Assert.equal(expected, actual, `${key} should match`); + } +}); diff --git a/browser/extensions/formautofill/test/unit/test_createRecords.js b/browser/extensions/formautofill/test/unit/test_createRecords.js index 8fe0fddd7f15..7ed814cc1f44 100644 --- a/browser/extensions/formautofill/test/unit/test_createRecords.js +++ b/browser/extensions/formautofill/test/unit/test_createRecords.js @@ -65,8 +65,7 @@ const TESTCASES = [ }, }, { - description: - '"country" using @autocomplete shouldn\'t be identified aggressively', + description: `"country" using @autocomplete shouldn't be identified aggressively`, document: `
`, + formValue: { + "cc-number": "5105105105105100", + "cc-exp-month": "05", + "cc-exp-year": "26", + }, + expectedRecord: { + address: [], + creditCard: [ + { + "cc-number": "5105105105105100", + "cc-exp-month": "5", + "cc-exp-year": "2026", + }, + ], + }, + }, + { + description: + "A credit card form with combined expiry fields should have normalized expiry data.", + document: ``, + formValue: { + "cc-number": "5105105105105100", + "cc-exp": "07/27", + }, + expectedRecord: { + address: [], + creditCard: [ + { + "cc-number": "5105105105105100", + "cc-exp": "07/27", + "cc-exp-month": "7", + "cc-exp-year": "2027", + }, + ], + }, + }, ]; for (let testcase of TESTCASES) { diff --git a/mobile/android/geckoview/src/androidTest/java/org/mozilla/geckoview/test/AutocompleteTest.kt b/mobile/android/geckoview/src/androidTest/java/org/mozilla/geckoview/test/AutocompleteTest.kt index ffb6d16312b5..556169de467d 100644 --- a/mobile/android/geckoview/src/androidTest/java/org/mozilla/geckoview/test/AutocompleteTest.kt +++ b/mobile/android/geckoview/src/androidTest/java/org/mozilla/geckoview/test/AutocompleteTest.kt @@ -697,8 +697,8 @@ class AutocompleteTest : BaseSessionTest() { fun creditCardSaveAccept() { val ccName = "MyCard" val ccNumber = "5105105105105100" - val ccExpMonth = "06" - val ccExpYear = "24" + val ccExpMonth = "6" + val ccExpYear = "2024" mainSession.loadTestPath(CC_FORM_HTML_PATH) mainSession.waitForPageStop() @@ -843,8 +843,8 @@ class AutocompleteTest : BaseSessionTest() { fun creditCardSaveDismiss() { val ccName = "MyCard" val ccNumber = "5105105105105100" - val ccExpMonth = "06" - val ccExpYear = "24" + val ccExpMonth = "6" + val ccExpYear = "2024" mainSession.loadTestPath(CC_FORM_HTML_PATH) mainSession.waitForPageStop() @@ -913,9 +913,9 @@ class AutocompleteTest : BaseSessionTest() { fun creditCardSaveModifyAccept() { val ccName = "MyCard" val ccNumber = "5105105105105100" - val ccExpMonth = "06" - val ccExpYearNew = "26" - val ccExpYear = "24" + val ccExpMonth = "6" + val ccExpYearNew = "2026" + val ccExpYear = "2024" mainSession.loadTestPath(CC_FORM_HTML_PATH) mainSession.waitForPageStop() @@ -994,11 +994,11 @@ class AutocompleteTest : BaseSessionTest() { fun creditCardUpdateAccept() { val ccName = "MyCard" val ccNumber1 = "5105105105105100" - val ccExpMonth1 = "06" - val ccExpYear1 = "24" + val ccExpMonth1 = "6" + val ccExpYear1 = "2024" val ccNumber2 = "4111111111111111" val ccExpMonth2 = "11" - val ccExpYear2 = "21" + val ccExpYear2 = "2021" val savedCreditCards = mutableListOf