From d3ff4348c8694f375237de9a08cef7601aa425d9 Mon Sep 17 00:00:00 2001 From: Naz Date: Thu, 26 Jan 2023 19:20:00 +0800 Subject: [PATCH] Fixed test name as content version header is always present refs https://github.com/TryGhost/Ghost/commit/9ba251238a76a883f568a542d35f8f18959abfd8 - The test name should have been updated along with referenced change. --- .../shared/__snapshots__/version.test.js.snap | 56 +++++++++---------- .../core/test/e2e-api/shared/version.test.js | 2 +- 2 files changed, 29 insertions(+), 29 deletions(-) diff --git a/ghost/core/test/e2e-api/shared/__snapshots__/version.test.js.snap b/ghost/core/test/e2e-api/shared/__snapshots__/version.test.js.snap index 0863d88131..8e1d3b0a9b 100644 --- a/ghost/core/test/e2e-api/shared/__snapshots__/version.test.js.snap +++ b/ghost/core/test/e2e-api/shared/__snapshots__/version.test.js.snap @@ -223,6 +223,34 @@ Object { } `; +exports[`API Versioning Admin API responds with content version header even when accept version header is NOT PRESENT 1: [body] 1`] = ` +Object { + "site": Object { + "accent_color": "#FF1A75", + "description": "Thoughts, stories and ideas", + "icon": null, + "locale": "en", + "logo": null, + "title": "Ghost", + "url": "http://127.0.0.1:2369/", + "version": StringMatching /\\\\d\\+\\\\\\.\\\\d\\+/, + }, +} +`; + +exports[`API Versioning Admin API responds with content version header even when accept version header is NOT PRESENT 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": StringMatching /\\\\d\\+/, + "content-type": "application/json; charset=utf-8", + "content-version": StringMatching /v\\\\d\\+\\\\\\.\\\\d\\+/, + "etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/, + "vary": "Accept-Version, Origin, Accept-Encoding", + "x-powered-by": "Express", +} +`; + exports[`API Versioning Admin API responds with current content version header when requested version is AHEAD and CAN respond 1: [body] 1`] = ` Object { "site": Object { @@ -403,34 +431,6 @@ Object { } `; -exports[`API Versioning Admin API responds with no content version header when accept version header is NOT PRESENT 1: [body] 1`] = ` -Object { - "site": Object { - "accent_color": "#FF1A75", - "description": "Thoughts, stories and ideas", - "icon": null, - "locale": "en", - "logo": null, - "title": "Ghost", - "url": "http://127.0.0.1:2369/", - "version": StringMatching /\\\\d\\+\\\\\\.\\\\d\\+/, - }, -} -`; - -exports[`API Versioning Admin API responds with no content version header when accept version header is NOT PRESENT 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": StringMatching /\\\\d\\+/, - "content-type": "application/json; charset=utf-8", - "content-version": StringMatching /v\\\\d\\+\\\\\\.\\\\d\\+/, - "etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/, - "vary": "Accept-Version, Origin, Accept-Encoding", - "x-powered-by": "Express", -} -`; - exports[`API Versioning Content API Does an internal rewrite with accept version set when version is included in the URL 1: [body] 1`] = ` Object { "meta": Object { diff --git a/ghost/core/test/e2e-api/shared/version.test.js b/ghost/core/test/e2e-api/shared/version.test.js index ce0da74a3e..ee7ce6851c 100644 --- a/ghost/core/test/e2e-api/shared/version.test.js +++ b/ghost/core/test/e2e-api/shared/version.test.js @@ -25,7 +25,7 @@ describe('API Versioning', function () { mockManager.restore(); }); - it('responds with no content version header when accept version header is NOT PRESENT', async function () { + it('responds with content version header even when accept version header is NOT PRESENT', async function () { await agentAdminAPI .get('site/') .expectStatus(200)