Skip to content

Commit

Permalink
Merge branch 'develop' into feat/development-server
Browse files Browse the repository at this point in the history
  • Loading branch information
olivermrbl authored Oct 21, 2022
2 parents 021a695 + 4de4f20 commit 21743e6
Show file tree
Hide file tree
Showing 28 changed files with 843 additions and 41 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`[MEDUSA_FF_ANALYTICS] /admin/analytics-config GET /admin/analytics-config should retrieve config for logged in user if it exists 1`] = `
Object {
"analytics_config": Object {
"anonymize": false,
"created_at": Any<String>,
"deleted_at": null,
"id": Any<String>,
"opt_out": false,
"updated_at": Any<String>,
"user_id": "admin_user",
},
}
`;
exports[`[MEDUSA_FF_ANALYTICS] /admin/analytics-config POST /admin/analytics-config should create a new config for logged in user 1`] = `
Object {
"analytics_config": Object {
"anonymize": true,
"created_at": Any<String>,
"deleted_at": null,
"id": Any<String>,
"opt_out": true,
"updated_at": Any<String>,
"user_id": "admin_user",
},
}
`;
exports[`[MEDUSA_FF_ANALYTICS] /admin/analytics-config POST /admin/analytics-config/update should create a config for the user is no config exists 1`] = `
Object {
"analytics_config": Object {
"anonymize": false,
"created_at": Any<String>,
"deleted_at": null,
"id": Any<String>,
"opt_out": true,
"updated_at": Any<String>,
"user_id": "admin_user",
},
}
`;
exports[`[MEDUSA_FF_ANALYTICS] /admin/analytics-config POST /admin/analytics-config/update should update the config of the logged in user 1`] = `
Object {
"analytics_config": Object {
"anonymize": false,
"created_at": Any<String>,
"deleted_at": null,
"id": Any<String>,
"opt_out": true,
"updated_at": Any<String>,
"user_id": "admin_user",
},
}
`;
14 changes: 14 additions & 0 deletions integration-tests/api/__tests__/admin/__snapshots__/user.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,17 @@ Object {
"updated_at": Any<String>,
}
`;
exports[`[MEDUSA_FF_ANALYTICS] /admin/analytics-config DELETE /admin/users Deletes a user and their analytics config 1`] = `
Array [
Object {
"anonymize": false,
"created_at": Any<Date>,
"deleted_at": Any<Date>,
"id": Any<String>,
"opt_out": false,
"updated_at": Any<Date>,
"user_id": "member-user",
},
]
`;
205 changes: 205 additions & 0 deletions integration-tests/api/__tests__/admin/analytics-config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,205 @@
const path = require("path")
const startServerWithEnvironment =
require("../../../helpers/start-server-with-environment").default
const { useApi } = require("../../../helpers/use-api")
const { useDb } = require("../../../helpers/use-db")
const {
simpleAnalyticsConfigFactory,
} = require("../../factories/simple-analytics-config-factory")
const adminSeeder = require("../../helpers/admin-seeder")

const adminReqConfig = {
headers: {
Authorization: "Bearer test_token",
},
}

jest.setTimeout(30000)
describe("[MEDUSA_FF_ANALYTICS] /admin/analytics-config", () => {
let medusaProcess
let dbConnection

beforeAll(async () => {
const cwd = path.resolve(path.join(__dirname, "..", ".."))
const [process, connection] = await startServerWithEnvironment({
cwd,
env: { MEDUSA_FF_ANALYTICS: true },
})
dbConnection = connection
medusaProcess = process
})

afterAll(async () => {
const db = useDb()
await db.shutdown()

medusaProcess.kill()
})

describe("GET /admin/analytics-config", () => {
beforeEach(async () => {
await adminSeeder(dbConnection)
})

afterEach(async () => {
const db = useDb()
await db.teardown()
})

it("should retrieve config for logged in user if it exists", async () => {
// Create config
await simpleAnalyticsConfigFactory(dbConnection)

const api = useApi()
const response = await api.get(`/admin/analytics-configs`, adminReqConfig)

expect(response.data).toMatchSnapshot({
analytics_config: {
id: expect.any(String),
user_id: "admin_user",
opt_out: false,
anonymize: false,
created_at: expect.any(String),
updated_at: expect.any(String),
},
})
})

it("should return 404 if no config exists", async () => {
const api = useApi()

const err = await api
.get(`/admin/analytics-configs`, adminReqConfig)
.catch((err) => err)

expect(err).toBeTruthy()
expect(err.response.status).toEqual(404)
expect(err.response.data.message).toEqual(
"No analytics config found for user with id: admin_user"
)
})
})

describe("POST /admin/analytics-config", () => {
beforeEach(async () => {
await adminSeeder(dbConnection)
})

afterEach(async () => {
const db = useDb()
await db.teardown()
})

it("should create a new config for logged in user", async () => {
const api = useApi()
const response = await api
.post(
`/admin/analytics-configs`,
{
opt_out: true,
anonymize: true,
},
adminReqConfig
)
.catch((e) => console.log(e))

expect(response.data).toMatchSnapshot({
analytics_config: {
id: expect.any(String),
user_id: "admin_user",
opt_out: true,
anonymize: true,
created_at: expect.any(String),
updated_at: expect.any(String),
},
})
})
})

describe("POST /admin/analytics-config/update", () => {
beforeEach(async () => {
await adminSeeder(dbConnection)
})

afterEach(async () => {
const db = useDb()
await db.teardown()
})

it("should update the config of the logged in user", async () => {
// Create config
await simpleAnalyticsConfigFactory(dbConnection)

const api = useApi()
const response = await api.post(
`/admin/analytics-configs/update`,
{
opt_out: true,
},
adminReqConfig
)

expect(response.data).toMatchSnapshot({
analytics_config: {
id: expect.any(String),
user_id: "admin_user",
opt_out: true,
anonymize: false,
created_at: expect.any(String),
updated_at: expect.any(String),
},
})
})

it("should create a config for the user is no config exists", async () => {
const api = useApi()
const res = await api.post(
`/admin/analytics-configs/update`,
{
opt_out: true,
},
adminReqConfig
)

expect(res.data).toMatchSnapshot({
analytics_config: {
id: expect.any(String),
user_id: "admin_user",
opt_out: true,
anonymize: false,
created_at: expect.any(String),
updated_at: expect.any(String),
},
})
})
})

describe("DELETE /admin/analytics-config", () => {
beforeEach(async () => {
await adminSeeder(dbConnection)
})

afterEach(async () => {
const db = useDb()
await db.teardown()
})

it("should delete the config of the logged in user", async () => {
// Create config
await simpleAnalyticsConfigFactory(dbConnection)

const api = useApi()
const response = await api.delete(
`/admin/analytics-configs`,
adminReqConfig
)

expect(response.status).toEqual(200)
expect(response.data).toEqual({
user_id: "admin_user",
object: "analytics_config",
deleted: true,
})
})
})
})
Loading

0 comments on commit 21743e6

Please sign in to comment.