-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Related to #1441, just another round of UI code improvements and clean up.
- Loading branch information
Showing
54 changed files
with
866 additions
and
585 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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* | ||
* Copyright (c) [2024] SUSE LLC | ||
* | ||
* All Rights Reserved. | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of version 2 of the GNU General Public License as published | ||
* by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
* more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along | ||
* with this program; if not, contact SUSE LLC. | ||
* | ||
* To contact SUSE LLC about this file by physical or electronic mail, you may | ||
* find current contact information at www.suse.com. | ||
*/ | ||
|
||
import React from "react"; | ||
import { screen } from "@testing-library/react"; | ||
import { installerRender } from "~/test-utils"; | ||
import { PATHS } from "~/routes/products"; | ||
import { Product } from "~/types/software"; | ||
import ChangeProductLink from "./ChangeProductLink"; | ||
|
||
const tumbleweedProduct = { | ||
id: "Tumbleweed", | ||
name: "openSUSE Tumbleweed", | ||
description: "Tumbleweed description...", | ||
}; | ||
const microosProduct = { | ||
id: "MicroOS", | ||
name: "openSUSE MicroOS", | ||
description: "MicroOS description", | ||
}; | ||
|
||
let mockUseProduct: { products: Product[]; selectedProduct?: Product }; | ||
|
||
jest.mock("~/queries/software", () => ({ | ||
useProduct: () => mockUseProduct, | ||
})); | ||
|
||
describe("ChangeProductLink", () => { | ||
describe("when there is more than one product available", () => { | ||
beforeEach(() => { | ||
mockUseProduct = { products: [tumbleweedProduct, microosProduct] }; | ||
}); | ||
|
||
it("renders a link for navigating to product selection page", () => { | ||
installerRender(<ChangeProductLink />); | ||
const link = screen.getByRole("link", { name: "Change product" }); | ||
expect(link).toHaveAttribute("href", PATHS.changeProduct); | ||
}); | ||
}); | ||
|
||
describe("when there is only one product available", () => { | ||
beforeEach(() => { | ||
mockUseProduct = { products: [tumbleweedProduct] }; | ||
}); | ||
|
||
it("renders nothing", () => { | ||
const { container } = installerRender(<ChangeProductLink />); | ||
expect(container).toBeEmptyDOMElement(); | ||
}); | ||
}); | ||
}); |
Oops, something went wrong.