AutorÃa | Ultima modificación | Ver Log |
"use strict";describe("initial values:", function() {beforeEach(function() {intlSetup();});afterEach(function() {intlTeardown();});describe("init vanilla plugin on empty input", function() {beforeEach(function() {input = $("<input>").wrap("div");iti = window.intlTelInput(input[0]);});it("creates a container with the right class", function() {expect(getParentElement()).toHaveClass("iti");});it("has the right number of list items", function() {expect(getListLength()).toEqual(totalCountries + defaultPreferredCountries);expect(getPreferredCountriesLength()).toEqual(defaultPreferredCountries);// only 1 active list itemexpect(getActiveListItem().length).toEqual(1);});it("sets the state correctly: selected flag and active list item", function() {expect(getSelectedFlagElement()).toHaveClass("iti__us");expect(getActiveListItem().attr("data-country-code")).toEqual("us");});});describe("init vanilla plugin on input containing valid UK dial code", function() {beforeEach(function() {input = $("<input value='+44 12345'>");iti = window.intlTelInput(input[0]);});it("sets the state correctly: selected flag and active list item", function() {expect(getSelectedFlagElement()).toHaveClass("iti__gb");expect(getActiveListItem().attr("data-country-code")).toEqual("gb");});});describe("input containing valid regionless NANP number with intl dial code", function() {beforeEach(function() {input = $("<input value='+1 800 123 1234'>");});describe("init plugin with nationalMode enabled", function() {beforeEach(function() {iti = window.intlTelInput(input[0]);});it("defaults to US flag", function() {expect(getSelectedFlagElement()).toHaveClass("iti__us");});});describe("init plugin with nationalMode enabled and an initialCountry", function() {var initialCountry = "ca";beforeEach(function() {iti = window.intlTelInput(input[0], {initialCountry: initialCountry});});it("defaults to the initialCountry flag", function() {expect(getSelectedFlagElement()).toHaveClass(`iti__${initialCountry}`);});});});describe("init vanilla plugin on input containing valid Cook Island number with intl dial code", function() {beforeEach(function() {input = $("<input value='+682 21 234'>");iti = window.intlTelInput(input[0]);});// issue 520it("sets the selected flag correctly", function() {expect(getSelectedFlagElement()).toHaveClass("iti__ck");});});describe("init vanilla plugin on input containing number with invalid dial code", function() {beforeEach(function() {input = $("<input value='+969999'>");iti = window.intlTelInput(input[0]);});it("does not set the selected flag or the active list item", function() {expect(getSelectedFlagElement().attr("class")).toBe("iti__flag");expect(getActiveListItem().length).toEqual(0);});});describe("init vanilla plugin on input containing number with no dial code", function() {beforeEach(function() {input = $("<input value='8'>");iti = window.intlTelInput(input[0]);});it("does not set the selected flag or the active list item", function() {expect(getSelectedFlagElement().attr("class")).toBe("iti__flag");expect(getActiveListItem().length).toEqual(0);});});});