File size: 1,957 Bytes
1e92f2d |
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 |
import getCurrentPlanPurchaseId from 'calypso/state/selectors/get-current-plan-purchase-id';
describe( 'getCurrentPlanPurchaseId()', () => {
it( 'should return null if the site is unknown', () => {
const state = {
currentUser: {
capabilities: {},
},
sites: {
plans: {
456: {
data: [
{
currentPlan: true,
id: 98765,
},
],
},
},
items: {
456: {},
},
},
};
expect( getCurrentPlanPurchaseId( state ) ).toBeNull();
expect( getCurrentPlanPurchaseId( state, 123 ) ).toBeNull();
} );
it( 'should return null if the current purchase ID is unknown', () => {
const siteId = 123;
const state = {
currentUser: {
capabilities: {},
},
sites: {
plans: {
[ siteId ]: {
data: [
{
currentPlan: false,
id: 98765,
},
{
currentPlan: true,
},
],
},
},
items: {
[ siteId ]: {},
},
},
};
expect( getCurrentPlanPurchaseId( state, siteId ) ).toBeNull();
} );
it( 'should return null if there is no plans data, but there is site plan data', () => {
const siteId = 123;
const state = {
currentUser: {
capabilities: {},
},
sites: {
plans: {
[ siteId ]: {
data: [],
},
},
items: {
[ siteId ]: {
plan: {},
},
},
},
};
expect( getCurrentPlanPurchaseId( state, siteId ) ).toBeNull();
} );
it( 'should return the purchase ID for a site', () => {
const siteId = 123;
const purchaseId = 123456;
const state = {
currentUser: {
capabilities: {},
},
sites: {
plans: {
[ siteId ]: {
data: [
{
currentPlan: true,
id: purchaseId,
},
],
},
},
items: {
[ siteId ]: {
plan: { some: 'plan' },
},
},
},
};
expect( getCurrentPlanPurchaseId( state, siteId ) ).toEqual( purchaseId );
} );
} );
|