-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18234 from davelopez/24.0_drop_restriction_switch…
…_immutable_histories [24.1] Drop restriction to switch to immutable histories
- Loading branch information
Showing
23 changed files
with
364 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
import { | ||
type AnonymousUser, | ||
type AnyHistory, | ||
type HistorySummary, | ||
type HistorySummaryExtended, | ||
isRegisteredUser, | ||
type User, | ||
userOwnsHistory, | ||
} from "."; | ||
|
||
const REGISTERED_USER_ID = "fake-user-id"; | ||
const ANOTHER_USER_ID = "another-fake-user-id"; | ||
const ANONYMOUS_USER_ID = null; | ||
|
||
const REGISTERED_USER: User = { | ||
id: REGISTERED_USER_ID, | ||
email: "[email protected]", | ||
tags_used: [], | ||
isAnonymous: false, | ||
total_disk_usage: 0, | ||
}; | ||
|
||
const ANONYMOUS_USER: AnonymousUser = { | ||
isAnonymous: true, | ||
}; | ||
|
||
const SESSIONLESS_USER = null; | ||
|
||
function createFakeHistory<T>(historyId: string = "fake-id", user_id?: string | null): T { | ||
const history: AnyHistory = { | ||
id: historyId, | ||
name: "test", | ||
model_class: "History", | ||
deleted: false, | ||
archived: false, | ||
purged: false, | ||
published: false, | ||
annotation: null, | ||
update_time: "2021-09-01T00:00:00.000Z", | ||
tags: [], | ||
url: `/history/${historyId}`, | ||
contents_active: { active: 0, deleted: 0, hidden: 0 }, | ||
count: 0, | ||
size: 0, | ||
}; | ||
if (user_id !== undefined) { | ||
(history as HistorySummaryExtended).user_id = user_id; | ||
} | ||
return history as T; | ||
} | ||
|
||
const HISTORY_OWNED_BY_REGISTERED_USER = createFakeHistory<HistorySummaryExtended>("1234", REGISTERED_USER_ID); | ||
const HISTORY_OWNED_BY_ANOTHER_USER = createFakeHistory<HistorySummaryExtended>("5678", ANOTHER_USER_ID); | ||
const HISTORY_OWNED_BY_ANONYMOUS_USER = createFakeHistory<HistorySummaryExtended>("1234", ANONYMOUS_USER_ID); | ||
const HISTORY_SUMMARY_WITHOUT_USER_ID = createFakeHistory<HistorySummary>("1234"); | ||
|
||
describe("API Types Helpers", () => { | ||
describe("isRegisteredUser", () => { | ||
it("should return true for a registered user", () => { | ||
expect(isRegisteredUser(REGISTERED_USER)).toBe(true); | ||
}); | ||
|
||
it("should return false for an anonymous user", () => { | ||
expect(isRegisteredUser(ANONYMOUS_USER)).toBe(false); | ||
}); | ||
|
||
it("should return false for sessionless users", () => { | ||
expect(isRegisteredUser(SESSIONLESS_USER)).toBe(false); | ||
}); | ||
}); | ||
|
||
describe("isAnonymousUser", () => { | ||
it("should return true for an anonymous user", () => { | ||
expect(isRegisteredUser(ANONYMOUS_USER)).toBe(false); | ||
}); | ||
|
||
it("should return false for a registered user", () => { | ||
expect(isRegisteredUser(REGISTERED_USER)).toBe(true); | ||
}); | ||
|
||
it("should return false for sessionless users", () => { | ||
expect(isRegisteredUser(SESSIONLESS_USER)).toBe(false); | ||
}); | ||
}); | ||
|
||
describe("userOwnsHistory", () => { | ||
it("should return true for a registered user owning the history", () => { | ||
expect(userOwnsHistory(REGISTERED_USER, HISTORY_OWNED_BY_REGISTERED_USER)).toBe(true); | ||
}); | ||
|
||
it("should return false for a registered user not owning the history", () => { | ||
expect(userOwnsHistory(REGISTERED_USER, HISTORY_OWNED_BY_ANOTHER_USER)).toBe(false); | ||
}); | ||
|
||
it("should return true for a registered user owning a history without user_id", () => { | ||
expect(userOwnsHistory(REGISTERED_USER, HISTORY_SUMMARY_WITHOUT_USER_ID)).toBe(true); | ||
}); | ||
|
||
it("should return true for an anonymous user owning a history with null user_id", () => { | ||
expect(userOwnsHistory(ANONYMOUS_USER, HISTORY_OWNED_BY_ANONYMOUS_USER)).toBe(true); | ||
}); | ||
|
||
it("should return false for an anonymous user not owning a history", () => { | ||
expect(userOwnsHistory(ANONYMOUS_USER, HISTORY_OWNED_BY_REGISTERED_USER)).toBe(false); | ||
}); | ||
|
||
it("should return false for sessionless users", () => { | ||
expect(userOwnsHistory(SESSIONLESS_USER, HISTORY_OWNED_BY_REGISTERED_USER)).toBe(false); | ||
expect(userOwnsHistory(SESSIONLESS_USER, HISTORY_SUMMARY_WITHOUT_USER_ID)).toBe(false); | ||
expect(userOwnsHistory(SESSIONLESS_USER, HISTORY_OWNED_BY_ANONYMOUS_USER)).toBe(false); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 25 additions & 5 deletions
30
client/src/components/History/CurrentHistory/HistoryMessages.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.