2020-03-27 20:42:58 +00:00
/ * *
* External dependencies
* /
import { shallow } from 'enzyme' ;
import { ExternalLink , Button } from '@wordpress/components' ;
2020-08-20 04:59:52 +00:00
import { recordEvent } from '@woocommerce/tracks' ;
2020-03-27 20:42:58 +00:00
/ * *
* Internal dependencies
* /
import { acceptWcsTos , getWcsAssets } from '../../wcs-api.js' ;
2020-04-16 23:58:36 +00:00
import { setupErrorTypes } from '../../setup-notice' ;
2020-03-27 20:42:58 +00:00
2020-08-13 02:05:22 +00:00
jest . mock ( '../../wcs-api.js' ) ;
2020-03-27 20:42:58 +00:00
acceptWcsTos . mockReturnValue ( Promise . resolve ( ) ) ;
const wcsAssetsMock = { } ;
getWcsAssets . mockReturnValue ( Promise . resolve ( wcsAssetsMock ) ) ;
import { ShippingBanner } from '../index.js' ;
2020-08-20 04:59:52 +00:00
jest . mock ( '@woocommerce/tracks' ) ;
2020-03-27 20:42:58 +00:00
jest . mock ( '@woocommerce/wc-admin-settings' ) ;
describe ( 'Tracking impression in shippingBanner' , ( ) => {
const expectedTrackingData = {
banner _name : 'wcadmin_install_wcs_prompt' ,
jetpack _connected : true ,
jetpack _installed : true ,
wcs _installed : true ,
} ;
2020-04-16 23:58:36 +00:00
const wcsPluginSlug = 'woocommerce-services' ;
2020-03-27 20:42:58 +00:00
beforeEach ( ( ) => {
shallow (
< ShippingBanner
isJetpackConnected = { true }
activePlugins = { [ wcsPluginSlug , 'jetpack' ] }
itemsCount = { 1 }
activatePlugins = { jest . fn ( ) }
2020-04-16 23:58:36 +00:00
installPlugin = { jest . fn ( ) }
2020-03-27 20:42:58 +00:00
isRequesting = { false }
/ >
) ;
} ) ;
it ( 'should record an event when user sees banner loaded' , ( ) => {
expect ( recordEvent ) . toHaveBeenCalledTimes ( 1 ) ;
expect ( recordEvent ) . toHaveBeenCalledWith (
'banner_impression' ,
expectedTrackingData
) ;
} ) ;
} ) ;
describe ( 'Tracking clicks in shippingBanner' , ( ) => {
const isJetpackConnected = true ;
let shippingBannerWrapper ;
const getExpectedTrackingData = ( element ) => {
return {
banner _name : 'wcadmin_install_wcs_prompt' ,
jetpack _connected : true ,
jetpack _installed : true ,
wcs _installed : true ,
element ,
} ;
} ;
2020-04-16 23:58:36 +00:00
const wcsPluginSlug = 'woocommerce-services' ;
2020-03-27 20:42:58 +00:00
beforeEach ( ( ) => {
shippingBannerWrapper = shallow (
< ShippingBanner
isJetpackConnected = { isJetpackConnected }
activePlugins = { [ wcsPluginSlug , 'jetpack' ] }
2020-04-16 23:58:36 +00:00
installPlugin = { jest . fn ( ) }
2020-03-27 20:42:58 +00:00
activatePlugins = { jest . fn ( ) }
isRequesting = { false }
itemsCount = { 1 }
/ >
) ;
} ) ;
it ( 'should record an event when user clicks "Create shipping label"' , ( ) => {
const createShippingLabelButton = shippingBannerWrapper . find ( Button ) ;
expect ( createShippingLabelButton . length ) . toBe ( 1 ) ;
createShippingLabelButton . simulate ( 'click' ) ;
expect ( recordEvent ) . toHaveBeenCalledWith (
'banner_element_clicked' ,
getExpectedTrackingData ( 'shipping_banner_create_label' )
) ;
} ) ;
it ( 'should record an event when user clicks "WooCommerce Service"' , ( ) => {
const links = shippingBannerWrapper . find ( ExternalLink ) ;
expect ( links . length ) . toBe ( 1 ) ;
const wcsLink = links . first ( ) ;
wcsLink . simulate ( 'click' ) ;
expect ( recordEvent ) . toHaveBeenCalledWith (
'banner_impression' ,
getExpectedTrackingData ( )
) ;
} ) ;
it ( 'should record an event when user clicks "x" to dismiss the banner' , ( ) => {
const noticeDimissButton = shippingBannerWrapper . find (
'.notice-dismiss'
) ;
expect ( noticeDimissButton . length ) . toBe ( 1 ) ;
noticeDimissButton . simulate ( 'click' ) ;
expect ( recordEvent ) . toHaveBeenCalledWith (
'banner_element_clicked' ,
getExpectedTrackingData ( 'shipping_banner_dimiss' )
) ;
} ) ;
} ) ;
describe ( 'Create shipping label button' , ( ) => {
let shippingBannerWrapper ;
2020-04-16 23:58:36 +00:00
const installPlugin = jest . fn ( ) . mockReturnValue ( {
status : 'success' ,
} ) ;
const activatePlugins = jest . fn ( ) . mockReturnValue ( {
status : 'success' ,
} ) ;
2020-03-27 20:42:58 +00:00
delete window . location ; // jsdom won't allow to rewrite window.location unless deleted first
window . location = {
href : 'http://wcship.test/wp-admin/post.php?post=1000&action=edit' ,
} ;
beforeEach ( ( ) => {
shippingBannerWrapper = shallow (
< ShippingBanner
isJetpackConnected = { true }
activatePlugins = { activatePlugins }
activePlugins = { [ ] }
2020-04-16 23:58:36 +00:00
installPlugin = { installPlugin }
2020-03-27 20:42:58 +00:00
isRequesting = { false }
itemsCount = { 1 }
/ >
) ;
} ) ;
it ( 'should install WooCommerce Shipping when button is clicked' , ( ) => {
const createShippingLabelButton = shippingBannerWrapper . find ( Button ) ;
expect ( createShippingLabelButton . length ) . toBe ( 1 ) ;
createShippingLabelButton . simulate ( 'click' ) ;
2020-04-16 23:58:36 +00:00
expect ( installPlugin ) . toHaveBeenCalledWith ( 'woocommerce-services' ) ;
2020-03-27 20:42:58 +00:00
} ) ;
it ( 'should activate WooCommerce Shipping when installation finishes' , ( ) => {
2020-04-16 23:58:36 +00:00
const createShippingLabelButton = shippingBannerWrapper . find ( Button ) ;
expect ( createShippingLabelButton . length ) . toBe ( 1 ) ;
createShippingLabelButton . simulate ( 'click' ) ;
2020-03-27 20:42:58 +00:00
expect ( activatePlugins ) . toHaveBeenCalledWith ( [
'woocommerce-services' ,
] ) ;
} ) ;
it ( 'should perform a request to accept the TOS and get WCS assets to load' , async ( ) => {
const loadWcsAssetsMock = jest . fn ( ) ;
shippingBannerWrapper . instance ( ) . loadWcsAssets = loadWcsAssetsMock ;
await shippingBannerWrapper . instance ( ) . acceptTosAndGetWCSAssets ( ) ;
expect ( acceptWcsTos ) . toHaveBeenCalled ( ) ;
expect ( getWcsAssets ) . toHaveBeenCalled ( ) ;
expect ( loadWcsAssetsMock ) . toHaveBeenCalledWith ( wcsAssetsMock ) ;
} ) ;
it ( 'should load WCS assets when a path is provided' , ( ) => {
const scriptMock = { } ;
const linkMock = { } ;
const divMock = { dataset : { args : null } } ;
const createElementMockReturn = {
div : divMock ,
script : scriptMock ,
link : linkMock ,
} ;
window . jQuery = jest . fn ( ) ;
window . jQuery . mockReturnValue ( {
sortable : jest . fn ( ) ,
hide : jest . fn ( ) ,
} ) ;
2020-07-30 01:51:15 +00:00
const createElementMock = jest . fn (
( tagName ) => createElementMockReturn [ tagName ]
) ;
2020-03-27 20:42:58 +00:00
const createElement = document . createElement ;
document . createElement = createElementMock ;
const getElementsByTagNameMock = jest . fn ( ) ;
const headMock = {
appendChild : jest . fn ( ) ,
} ;
getElementsByTagNameMock . mockReturnValueOnce ( [ headMock ] ) ;
const getElementsByTagName = document . getElementsByTagName ;
document . getElementsByTagName = getElementsByTagNameMock ;
const getElementByIdMock = jest . fn ( ) ;
getElementByIdMock . mockReturnValue ( {
insertAdjacentHTML : jest . fn ( ) ,
} ) ;
const getElementById = document . getElementById ;
document . getElementById = getElementByIdMock ;
const appendChildMock = jest . fn ( ) ;
const appendChild = document . body . appendChild ;
document . body . appendChild = appendChildMock ;
const openWcsModalMock = jest . fn ( ) ;
shippingBannerWrapper . instance ( ) . openWcsModal = openWcsModalMock ;
shippingBannerWrapper . instance ( ) . loadWcsAssets ( {
assets : {
wc _connect _admin _script : '/path/to/wcs.js' ,
wc _connect _admin _style : '/path/to/wcs.css' ,
} ,
} ) ;
expect ( createElementMock ) . toHaveBeenCalledWith ( 'script' ) ;
expect ( createElementMock ) . toHaveNthReturnedWith ( 1 , scriptMock ) ;
expect ( scriptMock . async ) . toEqual ( true ) ;
expect ( scriptMock . src ) . toEqual ( '/path/to/wcs.js' ) ;
expect ( appendChildMock ) . toHaveBeenCalledWith ( scriptMock ) ;
expect ( getElementsByTagNameMock ) . toHaveBeenCalledWith ( 'head' ) ;
expect ( getElementsByTagNameMock ) . toHaveReturnedWith ( [ headMock ] ) ;
expect ( createElementMock ) . toHaveBeenCalledWith ( 'link' ) ;
expect ( createElementMock ) . toHaveNthReturnedWith ( 2 , linkMock ) ;
expect ( linkMock . rel ) . toEqual ( 'stylesheet' ) ;
expect ( linkMock . type ) . toEqual ( 'text/css' ) ;
expect ( linkMock . href ) . toEqual ( '/path/to/wcs.css' ) ;
expect ( linkMock . media ) . toEqual ( 'all' ) ;
document . createElement = createElement ;
document . getElementById = getElementById ;
document . body . appendChild = appendChild ;
document . getElementsByTagName = getElementsByTagName ;
} ) ;
it ( 'should open WCS modal' , ( ) => {
window . wcsGetAppStore = jest . fn ( ) ;
const getState = jest . fn ( ) ;
const dispatch = jest . fn ( ) ;
const subscribe = jest . fn ( ) ;
window . wcsGetAppStore . mockReturnValueOnce ( {
getState ,
dispatch ,
subscribe ,
} ) ;
getState . mockReturnValueOnce ( {
ui : {
selectedSiteId : 'SITE_ID' ,
} ,
} ) ;
const getElementByIdMock = jest . fn ( ) ;
getElementByIdMock . mockReturnValue ( {
style : { display : null } ,
} ) ;
const getElementById = document . getElementById ;
document . getElementById = getElementByIdMock ;
shippingBannerWrapper . instance ( ) . openWcsModal ( ) ;
expect ( window . wcsGetAppStore ) . toHaveBeenCalledWith (
'wc-connect-create-shipping-label'
) ;
expect ( getState ) . toHaveBeenCalledTimes ( 1 ) ;
expect ( subscribe ) . toHaveBeenCalledTimes ( 1 ) ;
expect ( getElementByIdMock ) . toHaveBeenCalledWith (
'woocommerce-admin-print-label'
) ;
document . getElementById = getElementById ;
} ) ;
} ) ;
describe ( 'In the process of installing, activating, loading assets for WooCommerce Service' , ( ) => {
let shippingBannerWrapper ;
beforeEach ( ( ) => {
shippingBannerWrapper = shallow (
< ShippingBanner
isJetpackConnected = { true }
activatePlugins = { jest . fn ( ) }
activePlugins = { [ 'jetpack' , 'woocommerce-services' ] }
2020-04-16 23:58:36 +00:00
installPlugin = { jest . fn ( ) }
2020-03-27 20:42:58 +00:00
isRequesting = { true }
itemsCount = { 1 }
/ >
) ;
} ) ;
it ( 'should show a busy loading state on "Create shipping label"' , ( ) => {
shippingBannerWrapper . setState ( { isShippingLabelButtonBusy : true } ) ;
const createShippingLabelButton = shippingBannerWrapper . find ( Button ) ;
expect ( createShippingLabelButton . length ) . toBe ( 1 ) ;
expect ( createShippingLabelButton . prop ( 'disabled' ) ) . toBe ( true ) ;
expect ( createShippingLabelButton . prop ( 'isBusy' ) ) . toBe ( true ) ;
} ) ;
it ( 'should disable the dismiss button ' , ( ) => {
shippingBannerWrapper . setState ( { isShippingLabelButtonBusy : true } ) ;
const dismissButton = shippingBannerWrapper . find ( '.notice-dismiss' ) ;
expect ( dismissButton . length ) . toBe ( 1 ) ;
expect ( dismissButton . prop ( 'disabled' ) ) . toBe ( true ) ;
} ) ;
} ) ;
describe ( 'Setup error message' , ( ) => {
let shippingBannerWrapper ;
2020-04-16 23:58:36 +00:00
const activatePlugins = jest . fn ( ) . mockReturnValue ( {
status : 'failed' ,
} ) ;
const installPlugin = jest . fn ( ) . mockReturnValue ( {
status : 'failed' ,
} ) ;
2020-03-27 20:42:58 +00:00
beforeEach ( ( ) => {
shippingBannerWrapper = shallow (
< ShippingBanner
isJetpackConnected = { true }
2020-04-16 23:58:36 +00:00
activatePlugins = { activatePlugins }
activePlugins = { [ 'jetpack' ] }
installPlugin = { installPlugin }
2020-03-27 20:42:58 +00:00
itemsCount = { 1 }
isRequesting = { false }
/ >
) ;
} ) ;
it ( 'should not show if there is no error' , ( ) => {
expect ( shippingBannerWrapper . instance ( ) . isSetupError ( ) ) . toBe ( false ) ;
} ) ;
2020-04-16 23:58:36 +00:00
it ( 'should show if there is installation error' , async ( ) => {
await shippingBannerWrapper
. instance ( )
. installAndActivatePlugins ( 'woocommerce-services' ) ;
2020-03-27 20:42:58 +00:00
expect ( shippingBannerWrapper . instance ( ) . isSetupError ( ) ) . toBe ( true ) ;
2020-04-16 23:58:36 +00:00
expect ( shippingBannerWrapper . instance ( ) . state . setupErrorReason ) . toBe (
setupErrorTypes . INSTALL
2020-03-27 20:42:58 +00:00
) ;
} ) ;
2020-04-16 23:58:36 +00:00
it ( 'should show if there is activation error' , async ( ) => {
// Create a new wrapper with an installPlugin that passes.
const wrapper = shallow (
< ShippingBanner
isJetpackConnected = { true }
activatePlugins = { activatePlugins }
activePlugins = { [ 'jetpack' ] }
installPlugin = { jest . fn ( ) . mockReturnValue ( {
status : 'success' ,
} ) }
itemsCount = { 1 }
isRequesting = { false }
/ >
2020-03-27 20:42:58 +00:00
) ;
2020-04-16 23:58:36 +00:00
await wrapper
. instance ( )
. installAndActivatePlugins ( 'woocommerce-services' ) ;
expect ( wrapper . instance ( ) . isSetupError ( ) ) . toBe ( true ) ;
expect ( wrapper . instance ( ) . state . setupErrorReason ) . toBe (
setupErrorTypes . ACTIVATE
2020-03-27 20:42:58 +00:00
) ;
} ) ;
} ) ;
describe ( 'The message in the banner' , ( ) => {
2020-04-16 23:58:36 +00:00
const createShippingBannerWrapper = ( { activePlugins } ) =>
2020-03-27 20:42:58 +00:00
shallow (
< ShippingBanner
isJetpackConnected = { true }
activatePlugins = { jest . fn ( ) }
activePlugins = { activePlugins }
2020-04-16 23:58:36 +00:00
installPlugin = { jest . fn ( ) }
2020-03-27 20:42:58 +00:00
wcsPluginSlug = { 'woocommerce-services' }
isRequesting = { true }
itemsCount = { 1 }
/ >
) ;
const notActivatedMessage =
'By clicking "Create shipping label", WooCommerce Shipping will be installed and you agree to its Terms of Service.' ;
const activatedMessage =
'You\'ve already installed WooCommerce Shipping. By clicking "Create shipping label", you agree to its Terms of Service.' ;
it ( 'should show install text "By clicking "Create shipping label"..." when first loaded.' , ( ) => {
const shippingBannerWrapper = createShippingBannerWrapper ( {
activePlugins : [ ] ,
} ) ;
const createShippingLabelText = shippingBannerWrapper . find ( 'p' ) ;
expect ( createShippingLabelText . text ( ) ) . toBe ( notActivatedMessage ) ;
} ) ;
it ( 'should continue to show the initial message "By clicking "Create shipping label"..." after WooCommerce Service is installed successfully.' , ( ) => {
const shippingBannerWrapper = createShippingBannerWrapper ( {
activePlugins : [ ] ,
} ) ;
// Mock installation and activation successful
shippingBannerWrapper . setProps ( {
activePlugins : [ 'woocommerce-services' ] ,
} ) ;
const createShippingLabelText = shippingBannerWrapper . find ( 'p' ) ;
expect ( createShippingLabelText . text ( ) ) . toBe ( notActivatedMessage ) ;
} ) ;
it ( 'should continue to show the initial message "By clicking "Create shipping label"..." after WooCommerce Service is installed and activated successfully.' , ( ) => {
const shippingBannerWrapper = createShippingBannerWrapper ( {
activePlugins : [ ] ,
} ) ;
// Mock installation and activation successful
shippingBannerWrapper . setProps ( {
activePlugins : [ 'woocommerce-services' ] ,
} ) ;
const createShippingLabelText = shippingBannerWrapper . find ( 'p' ) ;
expect ( createShippingLabelText . text ( ) ) . toBe ( notActivatedMessage ) ;
} ) ;
it ( 'should show install text "By clicking "You\'ve already installed WooCommerce Shipping."..." when WooCommerce Service is already installed.' , ( ) => {
const shippingBannerWrapper = createShippingBannerWrapper ( {
activePlugins : [ 'woocommerce-services' ] ,
} ) ;
const createShippingLabelText = shippingBannerWrapper . find ( 'p' ) ;
expect ( createShippingLabelText . text ( ) ) . toBe ( activatedMessage ) ;
} ) ;
} ) ;