Skip to content

Commit

Permalink
Fix develop changelog parsing (#28232)
Browse files Browse the repository at this point in the history
* Fix develop changelog parsing and DRY it

Signed-off-by: Michael Telatynski <[email protected]>

* duh

Signed-off-by: Michael Telatynski <[email protected]>

* Improve coverage

Signed-off-by: Michael Telatynski <[email protected]>

* Typeguards!

Signed-off-by: Michael Telatynski <[email protected]>

* Discard changes to test/unit-tests/components/views/dialogs/__snapshots__/ChangelogDialog-test.tsx.snap

---------

Signed-off-by: Michael Telatynski <[email protected]>
  • Loading branch information
t3chguy authored Oct 18, 2024
1 parent 6771bd6 commit 06d1239
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 23 deletions.
39 changes: 29 additions & 10 deletions src/components/views/dialogs/ChangelogDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import Spinner from "../elements/Spinner";
import Heading from "../typography/Heading";

interface IProps {
newVersion: string;
version: string;
newVersion: DevelopVersionString;
version: DevelopVersionString;
onFinished: (success: boolean) => void;
}

Expand All @@ -32,6 +32,28 @@ interface Commit {

const REPOS = ["element-hq/element-web", "matrix-org/matrix-js-sdk"] as const;

export type DevelopVersionString = string & { _developVersionString: never };

/*
* Parse a version string is compatible with the Changelog dialog ([element-version]-js-[js-sdk-version])
*/
export function parseVersion(version: string): Record<(typeof REPOS)[number], string> | null {
const parts = version.split("-");
if (parts.length === 3 && parts[1] === "js") {
const obj: Record<string, string> = {};
for (let i = 0; i < REPOS.length; i++) {
const commit = parts[2 * i];
obj[REPOS[i]] = commit;
}
return obj;
}
return null;
}

export function checkVersion(version: string): version is DevelopVersionString {
return parseVersion(version) !== null;
}

export default class ChangelogDialog extends React.Component<IProps, State> {
public constructor(props: IProps) {
super(props);
Expand All @@ -58,14 +80,11 @@ export default class ChangelogDialog extends React.Component<IProps, State> {
}

public componentDidMount(): void {
const version = this.props.newVersion.split("-");
const version2 = this.props.version.split("-");
if (version == null || version2 == null) return;
// parse versions of form: [vectorversion]-react-[react-sdk-version]-js-[js-sdk-version]
for (let i = 0; i < REPOS.length; i++) {
const oldVersion = version2[2 * i];
const newVersion = version[2 * i];
this.fetchChanges(REPOS[i], oldVersion, newVersion);
const commits = parseVersion(this.props.version)!;
const newCommits = parseVersion(this.props.newVersion)!;

for (const repo of REPOS) {
this.fetchChanges(repo, commits[repo], newCommits[repo]);
}
}

Expand Down
11 changes: 1 addition & 10 deletions src/toasts/UpdateToast.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,12 @@ import SdkConfig from "../SdkConfig";
import GenericToast from "../components/views/toasts/GenericToast";
import ToastStore from "../stores/ToastStore";
import QuestionDialog from "../components/views/dialogs/QuestionDialog";
import ChangelogDialog from "../components/views/dialogs/ChangelogDialog";
import ChangelogDialog, { checkVersion } from "../components/views/dialogs/ChangelogDialog";
import PlatformPeg from "../PlatformPeg";
import Modal from "../Modal";

const TOAST_KEY = "update";

/*
* Check a version string is compatible with the Changelog
* dialog ([element-version]-react-[react-sdk-version]-js-[js-sdk-version])
*/
function checkVersion(ver: string): boolean {
const parts = ver.split("-");
return parts.length === 5 && parts[1] === "react" && parts[3] === "js";
}

function installUpdate(): void {
PlatformPeg.get()?.installUpdate();
}
Expand Down
30 changes: 27 additions & 3 deletions test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ import React from "react";
import fetchMock from "fetch-mock-jest";
import { render, screen, waitForElementToBeRemoved } from "jest-matrix-react";

import ChangelogDialog from "../../../../../src/components/views/dialogs/ChangelogDialog";
import ChangelogDialog, {
DevelopVersionString,
parseVersion,
} from "../../../../../src/components/views/dialogs/ChangelogDialog";

describe("<ChangelogDialog />", () => {
it("should fetch github proxy url for each repo with old and new version strings", async () => {
Expand Down Expand Up @@ -64,8 +67,8 @@ describe("<ChangelogDialog />", () => {
files: [],
});

const newVersion = "newsha1-js-newsha3";
const oldVersion = "oldsha1-js-oldsha3";
const newVersion = "newsha1-js-newsha3" as DevelopVersionString;
const oldVersion = "oldsha1-js-oldsha3" as DevelopVersionString;
const { asFragment } = render(
<ChangelogDialog newVersion={newVersion} version={oldVersion} onFinished={jest.fn()} />,
);
Expand All @@ -78,3 +81,24 @@ describe("<ChangelogDialog />", () => {
expect(asFragment()).toMatchSnapshot();
});
});

describe("parseVersion", () => {
it("should return null for old-style version strings", () => {
expect(parseVersion("aaaabbbb-react-ccccdddd-js-eeeeffff")).toBeNull();
});

it("should return null for invalid version strings", () => {
expect(parseVersion("aaaabbbb-react-ccccdddd")).toBeNull();
});

it("should return null for release version strings", () => {
expect(parseVersion("v1.22.33")).toBeNull();
});

it("should return mapping for develop version string", () => {
expect(parseVersion("aaaabbbb-js-eeeeffff")).toEqual({
"element-hq/element-web": "aaaabbbb",
"matrix-org/matrix-js-sdk": "eeeeffff",
});
});
});

0 comments on commit 06d1239

Please sign in to comment.