Ghost/test/e2e-api/admin/__snapshots__/offers.test.js.snap
Simon Backx a7566c8503
Added e2e tests for offers API (#14335)
refs https://github.com/TryGhost/Team/issues/1429

Includes tests for all endpoints of the offers API
2022-03-24 13:41:48 +01:00

810 lines
26 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Offers API Can add a fixed offer 1: [body] 1`] = `
Object {
"offers": Array [
Object {
"amount": 100,
"cadence": "year",
"code": "4th",
"currency": "USD",
"currency_restriction": true,
"display_description": "",
"display_title": "",
"duration": "once",
"duration_in_months": null,
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Fourth of July Sales",
"redemption_count": 0,
"status": "active",
"tier": Object {
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
},
"type": "fixed",
},
],
}
`;
exports[`Offers API Can add a fixed offer 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "347",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"location": StringMatching /https\\?:\\\\/\\\\/\\.\\*\\?\\\\/offers\\\\/\\[a-f0-9\\]\\{24\\}\\\\//,
"vary": "Origin, Accept-Encoding",
"x-cache-invalidate": "/*",
"x-powered-by": "Express",
}
`;
exports[`Offers API Can add a new offer 1: [body] 1`] = `
Object {
"offers": Array [
Object {
"amount": 12,
"cadence": "year",
"code": "black-friday",
"currency": null,
"currency_restriction": false,
"display_description": "10% off on yearly plan",
"display_title": "Black Friday Sale!",
"duration": "once",
"duration_in_months": null,
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Black Friday",
"redemption_count": 0,
"status": "active",
"tier": Object {
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
},
"type": "percent",
},
],
}
`;
exports[`Offers API Can add a new offer 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "389",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"location": StringMatching /https\\?:\\\\/\\\\/\\.\\*\\?\\\\/offers\\\\/\\[a-f0-9\\]\\{24\\}\\\\//,
"vary": "Origin, Accept-Encoding",
"x-cache-invalidate": "/*",
"x-powered-by": "Express",
}
`;
exports[`Offers API Can add a new offer with minimal fields 1: [body] 1`] = `
Object {
"offers": Array [
Object {
"amount": 50,
"cadence": "month",
"code": "easter",
"currency": null,
"currency_restriction": false,
"display_description": "",
"display_title": "",
"duration": "once",
"duration_in_months": null,
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Easter Sales",
"redemption_count": 0,
"status": "active",
"tier": Object {
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
},
"type": "percent",
},
],
}
`;
exports[`Offers API Can add a new offer with minimal fields 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "344",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"location": StringMatching /https\\?:\\\\/\\\\/\\.\\*\\?\\\\/offers\\\\/\\[a-f0-9\\]\\{24\\}\\\\//,
"vary": "Origin, Accept-Encoding",
"x-cache-invalidate": "/*",
"x-powered-by": "Express",
}
`;
exports[`Offers API Can archive an offer 1: [body] 1`] = `
Object {
"offers": Array [
Object {
"amount": 12,
"cadence": "year",
"code": "cyber-monday",
"currency": null,
"currency_restriction": false,
"display_description": "10% off on yearly plan, only today",
"display_title": "Cyber Monday Sale!",
"duration": "once",
"duration_in_months": null,
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Cyber Monday",
"redemption_count": 0,
"status": "archived",
"tier": Object {
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Default Product",
},
"type": "percent",
},
],
}
`;
exports[`Offers API Can archive an offer 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "428",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"vary": "Origin, Accept-Encoding",
"x-cache-invalidate": "/*",
"x-powered-by": "Express",
}
`;
exports[`Offers API Can browse 1: [body] 1`] = `
Object {
"offers": Array [
Object {
"amount": 12,
"cadence": "year",
"code": "black-friday",
"currency": null,
"currency_restriction": false,
"display_description": "10% off on yearly plan",
"display_title": "Black Friday Sale!",
"duration": "once",
"duration_in_months": null,
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Black Friday",
"redemption_count": 0,
"status": "active",
"tier": Object {
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Default Product",
},
"type": "percent",
},
Object {
"amount": 50,
"cadence": "month",
"code": "easter",
"currency": null,
"currency_restriction": false,
"display_description": "",
"display_title": "",
"duration": "once",
"duration_in_months": null,
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Easter Sales",
"redemption_count": 0,
"status": "active",
"tier": Object {
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Default Product",
},
"type": "percent",
},
Object {
"amount": 20,
"cadence": "year",
"code": "summer-sale",
"currency": null,
"currency_restriction": false,
"display_description": "",
"display_title": "",
"duration": "once",
"duration_in_months": null,
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Summer Sale",
"redemption_count": 0,
"status": "active",
"tier": Object {
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Default Product",
},
"type": "percent",
},
Object {
"amount": 100,
"cadence": "year",
"code": "4th",
"currency": "USD",
"currency_restriction": true,
"display_description": "",
"display_title": "",
"duration": "once",
"duration_in_months": null,
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Fourth of July Sales",
"redemption_count": 0,
"status": "active",
"tier": Object {
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Default Product",
},
"type": "fixed",
},
],
}
`;
exports[`Offers API Can browse 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "1491",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"vary": "Origin, Accept-Encoding",
"x-powered-by": "Express",
}
`;
exports[`Offers API Can browse active 1: [body] 1`] = `
Object {
"offers": Array [
Object {
"amount": 50,
"cadence": "month",
"code": "easter",
"currency": null,
"currency_restriction": false,
"display_description": "",
"display_title": "",
"duration": "once",
"duration_in_months": null,
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Easter Sales",
"redemption_count": 0,
"status": "active",
"tier": Object {
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Default Product",
},
"type": "percent",
},
Object {
"amount": 20,
"cadence": "year",
"code": "summer-sale",
"currency": null,
"currency_restriction": false,
"display_description": "",
"display_title": "",
"duration": "once",
"duration_in_months": null,
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Summer Sale",
"redemption_count": 0,
"status": "active",
"tier": Object {
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Default Product",
},
"type": "percent",
},
Object {
"amount": 100,
"cadence": "year",
"code": "4th",
"currency": "USD",
"currency_restriction": true,
"display_description": "",
"display_title": "",
"duration": "once",
"duration_in_months": null,
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Fourth of July Sales",
"redemption_count": 0,
"status": "active",
"tier": Object {
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Default Product",
},
"type": "fixed",
},
],
}
`;
exports[`Offers API Can browse active 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "1089",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"vary": "Origin, Accept-Encoding",
"x-powered-by": "Express",
}
`;
exports[`Offers API Can browse archived 1: [body] 1`] = `
Object {
"offers": Array [
Object {
"amount": 12,
"cadence": "year",
"code": "cyber-monday",
"currency": null,
"currency_restriction": false,
"display_description": "10% off on yearly plan, only today",
"display_title": "Cyber Monday Sale!",
"duration": "once",
"duration_in_months": null,
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Cyber Monday",
"redemption_count": 0,
"status": "archived",
"tier": Object {
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Default Product",
},
"type": "percent",
},
],
}
`;
exports[`Offers API Can browse archived 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "428",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"vary": "Origin, Accept-Encoding",
"x-powered-by": "Express",
}
`;
exports[`Offers API Can edit an offer 1: [body] 1`] = `
Object {
"offers": Array [
Object {
"amount": 12,
"cadence": "year",
"code": "cyber-monday",
"currency": null,
"currency_restriction": false,
"display_description": "10% off on yearly plan, only today",
"display_title": "Cyber Monday Sale!",
"duration": "once",
"duration_in_months": null,
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Cyber Monday",
"redemption_count": 0,
"status": "active",
"tier": Object {
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Default Product",
},
"type": "percent",
},
],
}
`;
exports[`Offers API Can edit an offer 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "426",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"vary": "Origin, Accept-Encoding",
"x-cache-invalidate": "/*",
"x-powered-by": "Express",
}
`;
exports[`Offers API Can get a single offer 1: [body] 1`] = `
Object {
"offers": Array [
Object {
"amount": 12,
"cadence": "year",
"code": "black-friday",
"currency": null,
"currency_restriction": false,
"display_description": "10% off on yearly plan",
"display_title": "Black Friday Sale!",
"duration": "once",
"duration_in_months": null,
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Black Friday",
"redemption_count": 0,
"status": "active",
"tier": Object {
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Default Product",
},
"type": "percent",
},
],
}
`;
exports[`Offers API Can get a single offer 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "414",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"vary": "Origin, Accept-Encoding",
"x-powered-by": "Express",
}
`;
exports[`Offers API Cannot create offer with same code 1: [body] 1`] = `
Object {
"errors": Array [
Object {
"code": null,
"context": "Offer 'code' must be unique. Please change and try again.",
"details": null,
"help": null,
"id": StringMatching /\\[a-f0-9\\]\\{8\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{12\\}/,
"message": "Validation error, cannot save offer.",
"property": null,
"type": "InvalidOfferCode",
},
],
}
`;
exports[`Offers API Cannot create offer with same code 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "258",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"vary": "Origin, Accept-Encoding",
"x-powered-by": "Express",
}
`;
exports[`Offers API Cannot create offer with same name 1: [body] 1`] = `
Object {
"errors": Array [
Object {
"code": null,
"context": "Offer 'name' must be unique. Please change and try again.",
"details": null,
"help": null,
"id": StringMatching /\\[a-f0-9\\]\\{8\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{12\\}/,
"message": "Validation error, cannot save offer.",
"property": null,
"type": "InvalidOfferName",
},
],
}
`;
exports[`Offers API Cannot create offer with same name 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "258",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"vary": "Origin, Accept-Encoding",
"x-powered-by": "Express",
}
`;
exports[`Offers API Cannot create offer with same slugified code 1: [body] 1`] = `
Object {
"errors": Array [
Object {
"code": null,
"context": "Offer 'code' must be unique. Please change and try again.",
"details": null,
"help": null,
"id": StringMatching /\\[a-f0-9\\]\\{8\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{12\\}/,
"message": "Validation error, cannot save offer.",
"property": null,
"type": "InvalidOfferCode",
},
],
}
`;
exports[`Offers API Cannot create offer with same slugified code 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "258",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"vary": "Origin, Accept-Encoding",
"x-powered-by": "Express",
}
`;
exports[`Offers API Cannot update offer amount 1: [body] 1`] = `
Object {
"offers": Array [
Object {
"amount": 12,
"cadence": "year",
"code": "cyber-monday",
"currency": null,
"currency_restriction": false,
"display_description": "10% off on yearly plan, only today",
"display_title": "Cyber Monday Sale!",
"duration": "once",
"duration_in_months": null,
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Cyber Monday",
"redemption_count": 0,
"status": "archived",
"tier": Object {
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Default Product",
},
"type": "percent",
},
],
}
`;
exports[`Offers API Cannot update offer amount 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "428",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"vary": "Origin, Accept-Encoding",
"x-cache-invalidate": "/*",
"x-powered-by": "Express",
}
`;
exports[`Offers API Cannot update offer cadence 1: [body] 1`] = `
Object {
"offers": Array [
Object {
"amount": 12,
"cadence": "year",
"code": "cyber-monday",
"currency": null,
"currency_restriction": false,
"display_description": "10% off on yearly plan, only today",
"display_title": "Cyber Monday Sale!",
"duration": "once",
"duration_in_months": null,
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Cyber Monday",
"redemption_count": 0,
"status": "archived",
"tier": Object {
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Default Product",
},
"type": "percent",
},
],
}
`;
exports[`Offers API Cannot update offer cadence 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "428",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"vary": "Origin, Accept-Encoding",
"x-cache-invalidate": "/*",
"x-powered-by": "Express",
}
`;
exports[`Offers API Cannot update offer code to one that exists 1: [body] 1`] = `
Object {
"errors": Array [
Object {
"code": null,
"context": "Offer 'code' must be unique. Please change and try again.",
"details": null,
"help": null,
"id": StringMatching /\\[a-f0-9\\]\\{8\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{12\\}/,
"message": "Validation error, cannot edit offer.",
"property": null,
"type": "InvalidOfferCode",
},
],
}
`;
exports[`Offers API Cannot update offer code to one that exists 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "258",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"vary": "Origin, Accept-Encoding",
"x-powered-by": "Express",
}
`;
exports[`Offers API Cannot update offer code to one that exists after it is slugified 1: [body] 1`] = `
Object {
"errors": Array [
Object {
"code": null,
"context": "Offer 'code' must be unique. Please change and try again.",
"details": null,
"help": null,
"id": StringMatching /\\[a-f0-9\\]\\{8\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{12\\}/,
"message": "Validation error, cannot edit offer.",
"property": null,
"type": "InvalidOfferCode",
},
],
}
`;
exports[`Offers API Cannot update offer code to one that exists after it is slugified 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "258",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"vary": "Origin, Accept-Encoding",
"x-powered-by": "Express",
}
`;
exports[`Offers API Cannot update offer name to one that exists 1: [body] 1`] = `
Object {
"errors": Array [
Object {
"code": null,
"context": "Offer 'name' must be unique. Please change and try again.",
"details": null,
"help": null,
"id": StringMatching /\\[a-f0-9\\]\\{8\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{12\\}/,
"message": "Validation error, cannot edit offer.",
"property": null,
"type": "InvalidOfferName",
},
],
}
`;
exports[`Offers API Cannot update offer name to one that exists 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "258",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"vary": "Origin, Accept-Encoding",
"x-powered-by": "Express",
}
`;
exports[`Offers API Cannot update offer tier 1: [body] 1`] = `
Object {
"offers": Array [
Object {
"amount": 12,
"cadence": "year",
"code": "cyber-monday",
"currency": null,
"currency_restriction": false,
"display_description": "10% off on yearly plan, only today",
"display_title": "Cyber Monday Sale!",
"duration": "once",
"duration_in_months": null,
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Cyber Monday",
"redemption_count": 0,
"status": "archived",
"tier": Object {
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Default Product",
},
"type": "percent",
},
],
}
`;
exports[`Offers API Cannot update offer tier 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "428",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"vary": "Origin, Accept-Encoding",
"x-cache-invalidate": "/*",
"x-powered-by": "Express",
}
`;
exports[`Offers API Has no initial offers 1: [body] 1`] = `
Object {
"offers": Array [],
}
`;
exports[`Offers API Has no initial offers 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "13",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"vary": "Origin, Accept-Encoding",
"x-powered-by": "Express",
}
`;
exports[`Offers API Slugifies offer codes 1: [body] 1`] = `
Object {
"offers": Array [
Object {
"amount": 20,
"cadence": "year",
"code": "summer-sale",
"currency": null,
"currency_restriction": false,
"display_description": "",
"display_title": "",
"duration": "once",
"duration_in_months": null,
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
"name": "Summer Sale",
"redemption_count": 0,
"status": "active",
"tier": Object {
"id": StringMatching /\\[a-f0-9\\]\\{24\\}/,
},
"type": "percent",
},
],
}
`;
exports[`Offers API Slugifies offer codes 2: [headers] 1`] = `
Object {
"access-control-allow-origin": "http://127.0.0.1:2369",
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
"content-length": "347",
"content-type": "application/json; charset=utf-8",
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
"location": StringMatching /https\\?:\\\\/\\\\/\\.\\*\\?\\\\/offers\\\\/\\[a-f0-9\\]\\{24\\}\\\\//,
"vary": "Origin, Accept-Encoding",
"x-cache-invalidate": "/*",
"x-powered-by": "Express",
}
`;