mirror of
https://github.com/anuraghazra/github-readme-stats.git
synced 2024-12-15 06:04:17 +08:00
02e714aeb4
* Fixed word-wrap bug
* ci(workflow): add 'npm' cache for actions/setup-node in .github/workflows (#1382)
* Revert "ci(workflow): add 'npm' cache for actions/setup-node in .github/workflows (#1382)"
This reverts commit 2723f00cb8
.
* chore: remove action cache
* chore: minor change
Co-authored-by: Markus Tyrkkö <markus.tyrkko@nitor.com>
Co-authored-by: Oscar Dominguez <dominguez.celada@gmail.com>
Co-authored-by: Anurag <hazru.anurag@gmail.com>
337 lines
11 KiB
JavaScript
337 lines
11 KiB
JavaScript
require("@testing-library/jest-dom");
|
|
const cssToObject = require("css-to-object");
|
|
const renderRepoCard = require("../src/cards/repo-card");
|
|
|
|
const { queryByTestId } = require("@testing-library/dom");
|
|
const themes = require("../themes");
|
|
|
|
const data_repo = {
|
|
repository: {
|
|
nameWithOwner: "anuraghazra/convoychat",
|
|
name: "convoychat",
|
|
description: "Help us take over the world! React + TS + GraphQL Chat App",
|
|
primaryLanguage: {
|
|
color: "#2b7489",
|
|
id: "MDg6TGFuZ3VhZ2UyODc=",
|
|
name: "TypeScript",
|
|
},
|
|
starCount: 38000,
|
|
forkCount: 100,
|
|
},
|
|
};
|
|
|
|
describe("Test renderRepoCard", () => {
|
|
it("should render correctly", () => {
|
|
document.body.innerHTML = renderRepoCard(data_repo.repository);
|
|
|
|
const [header] = document.getElementsByClassName("header");
|
|
|
|
expect(header).toHaveTextContent("convoychat");
|
|
expect(header).not.toHaveTextContent("anuraghazra");
|
|
expect(document.getElementsByClassName("description")[0]).toHaveTextContent(
|
|
"Help us take over the world! React + TS + GraphQL Chat App",
|
|
);
|
|
expect(queryByTestId(document.body, "stargazers")).toHaveTextContent("38k");
|
|
expect(queryByTestId(document.body, "forkcount")).toHaveTextContent("100");
|
|
expect(queryByTestId(document.body, "lang-name")).toHaveTextContent(
|
|
"TypeScript",
|
|
);
|
|
expect(queryByTestId(document.body, "lang-color")).toHaveAttribute(
|
|
"fill",
|
|
"#2b7489",
|
|
);
|
|
});
|
|
|
|
it("should display username in title (full repo name)", () => {
|
|
document.body.innerHTML = renderRepoCard(data_repo.repository, {
|
|
show_owner: true,
|
|
});
|
|
expect(document.getElementsByClassName("header")[0]).toHaveTextContent(
|
|
"anuraghazra/convoychat",
|
|
);
|
|
});
|
|
|
|
it("should trim header", () => {
|
|
document.body.innerHTML = renderRepoCard({
|
|
...data_repo.repository,
|
|
name: "some-really-long-repo-name-for-test-purposes",
|
|
});
|
|
|
|
expect(document.getElementsByClassName("header")[0].textContent).toBe(
|
|
"some-really-long-repo-name-for-test...",
|
|
);
|
|
});
|
|
|
|
it("should trim description", () => {
|
|
document.body.innerHTML = renderRepoCard({
|
|
...data_repo.repository,
|
|
description:
|
|
"The quick brown fox jumps over the lazy dog is an English-language pangram—a sentence that contains all of the letters of the English alphabet",
|
|
});
|
|
|
|
expect(
|
|
document.getElementsByClassName("description")[0].children[0].textContent,
|
|
).toBe("The quick brown fox jumps over the lazy dog is an");
|
|
|
|
expect(
|
|
document.getElementsByClassName("description")[0].children[1].textContent,
|
|
).toBe("English-language pangram—a sentence that contains all");
|
|
|
|
// Should not trim
|
|
document.body.innerHTML = renderRepoCard({
|
|
...data_repo.repository,
|
|
description: "Small text should not trim",
|
|
});
|
|
|
|
expect(document.getElementsByClassName("description")[0]).toHaveTextContent(
|
|
"Small text should not trim",
|
|
);
|
|
});
|
|
|
|
it("should render emojis", () => {
|
|
document.body.innerHTML = renderRepoCard({
|
|
...data_repo.repository,
|
|
description: "This is a text with a :poop: poo emoji",
|
|
});
|
|
|
|
// poop emoji may not show in all editors but it's there between "a" and "poo"
|
|
expect(document.getElementsByClassName("description")[0]).toHaveTextContent(
|
|
"This is a text with a 💩 poo emoji",
|
|
);
|
|
});
|
|
|
|
it("should hide language if primaryLanguage is null & fallback to correct values", () => {
|
|
document.body.innerHTML = renderRepoCard({
|
|
...data_repo.repository,
|
|
primaryLanguage: null,
|
|
});
|
|
|
|
expect(queryByTestId(document.body, "primary-lang")).toBeNull();
|
|
|
|
document.body.innerHTML = renderRepoCard({
|
|
...data_repo.repository,
|
|
primaryLanguage: { color: null, name: null },
|
|
});
|
|
|
|
expect(queryByTestId(document.body, "primary-lang")).toBeInTheDocument();
|
|
expect(queryByTestId(document.body, "lang-color")).toHaveAttribute(
|
|
"fill",
|
|
"#333",
|
|
);
|
|
|
|
expect(queryByTestId(document.body, "lang-name")).toHaveTextContent(
|
|
"Unspecified",
|
|
);
|
|
});
|
|
|
|
it("should render default colors properly", () => {
|
|
document.body.innerHTML = renderRepoCard(data_repo.repository);
|
|
|
|
const styleTag = document.querySelector("style");
|
|
const stylesObject = cssToObject(styleTag.innerHTML);
|
|
|
|
const headerClassStyles = stylesObject[".header"];
|
|
const descClassStyles = stylesObject[".description"];
|
|
const iconClassStyles = stylesObject[".icon"];
|
|
|
|
expect(headerClassStyles.fill).toBe("#2f80ed");
|
|
expect(descClassStyles.fill).toBe("#333");
|
|
expect(iconClassStyles.fill).toBe("#586069");
|
|
expect(queryByTestId(document.body, "card-bg")).toHaveAttribute(
|
|
"fill",
|
|
"#fffefe",
|
|
);
|
|
});
|
|
|
|
it("should render custom colors properly", () => {
|
|
const customColors = {
|
|
title_color: "5a0",
|
|
icon_color: "1b998b",
|
|
text_color: "9991",
|
|
bg_color: "252525",
|
|
};
|
|
|
|
document.body.innerHTML = renderRepoCard(data_repo.repository, {
|
|
...customColors,
|
|
});
|
|
|
|
const styleTag = document.querySelector("style");
|
|
const stylesObject = cssToObject(styleTag.innerHTML);
|
|
|
|
const headerClassStyles = stylesObject[".header"];
|
|
const descClassStyles = stylesObject[".description"];
|
|
const iconClassStyles = stylesObject[".icon"];
|
|
|
|
expect(headerClassStyles.fill).toBe(`#${customColors.title_color}`);
|
|
expect(descClassStyles.fill).toBe(`#${customColors.text_color}`);
|
|
expect(iconClassStyles.fill).toBe(`#${customColors.icon_color}`);
|
|
expect(queryByTestId(document.body, "card-bg")).toHaveAttribute(
|
|
"fill",
|
|
"#252525",
|
|
);
|
|
});
|
|
|
|
it("should render with all the themes", () => {
|
|
Object.keys(themes).forEach((name) => {
|
|
document.body.innerHTML = renderRepoCard(data_repo.repository, {
|
|
theme: name,
|
|
});
|
|
|
|
const styleTag = document.querySelector("style");
|
|
const stylesObject = cssToObject(styleTag.innerHTML);
|
|
|
|
const headerClassStyles = stylesObject[".header"];
|
|
const descClassStyles = stylesObject[".description"];
|
|
const iconClassStyles = stylesObject[".icon"];
|
|
|
|
expect(headerClassStyles.fill).toBe(`#${themes[name].title_color}`);
|
|
expect(descClassStyles.fill).toBe(`#${themes[name].text_color}`);
|
|
expect(iconClassStyles.fill).toBe(`#${themes[name].icon_color}`);
|
|
expect(queryByTestId(document.body, "card-bg")).toHaveAttribute(
|
|
"fill",
|
|
`#${themes[name].bg_color}`,
|
|
);
|
|
});
|
|
});
|
|
|
|
it("should render custom colors with themes", () => {
|
|
document.body.innerHTML = renderRepoCard(data_repo.repository, {
|
|
title_color: "5a0",
|
|
theme: "radical",
|
|
});
|
|
|
|
const styleTag = document.querySelector("style");
|
|
const stylesObject = cssToObject(styleTag.innerHTML);
|
|
|
|
const headerClassStyles = stylesObject[".header"];
|
|
const descClassStyles = stylesObject[".description"];
|
|
const iconClassStyles = stylesObject[".icon"];
|
|
|
|
expect(headerClassStyles.fill).toBe("#5a0");
|
|
expect(descClassStyles.fill).toBe(`#${themes.radical.text_color}`);
|
|
expect(iconClassStyles.fill).toBe(`#${themes.radical.icon_color}`);
|
|
expect(queryByTestId(document.body, "card-bg")).toHaveAttribute(
|
|
"fill",
|
|
`#${themes.radical.bg_color}`,
|
|
);
|
|
});
|
|
|
|
it("should render custom colors with themes and fallback to default colors if invalid", () => {
|
|
document.body.innerHTML = renderRepoCard(data_repo.repository, {
|
|
title_color: "invalid color",
|
|
text_color: "invalid color",
|
|
theme: "radical",
|
|
});
|
|
|
|
const styleTag = document.querySelector("style");
|
|
const stylesObject = cssToObject(styleTag.innerHTML);
|
|
|
|
const headerClassStyles = stylesObject[".header"];
|
|
const descClassStyles = stylesObject[".description"];
|
|
const iconClassStyles = stylesObject[".icon"];
|
|
|
|
expect(headerClassStyles.fill).toBe(`#${themes.default.title_color}`);
|
|
expect(descClassStyles.fill).toBe(`#${themes.default.text_color}`);
|
|
expect(iconClassStyles.fill).toBe(`#${themes.radical.icon_color}`);
|
|
expect(queryByTestId(document.body, "card-bg")).toHaveAttribute(
|
|
"fill",
|
|
`#${themes.radical.bg_color}`,
|
|
);
|
|
});
|
|
|
|
it("should not render star count or fork count if either of the are zero", () => {
|
|
document.body.innerHTML = renderRepoCard({
|
|
...data_repo.repository,
|
|
starCount: 0,
|
|
});
|
|
|
|
expect(queryByTestId(document.body, "stargazers")).toBeNull();
|
|
expect(queryByTestId(document.body, "forkcount")).toBeInTheDocument();
|
|
|
|
document.body.innerHTML = renderRepoCard({
|
|
...data_repo.repository,
|
|
starCount: 1,
|
|
forkCount: 0,
|
|
});
|
|
|
|
expect(queryByTestId(document.body, "stargazers")).toBeInTheDocument();
|
|
expect(queryByTestId(document.body, "forkcount")).toBeNull();
|
|
|
|
document.body.innerHTML = renderRepoCard({
|
|
...data_repo.repository,
|
|
starCount: 0,
|
|
forkCount: 0,
|
|
});
|
|
|
|
expect(queryByTestId(document.body, "stargazers")).toBeNull();
|
|
expect(queryByTestId(document.body, "forkcount")).toBeNull();
|
|
});
|
|
|
|
it("should render badges", () => {
|
|
document.body.innerHTML = renderRepoCard({
|
|
...data_repo.repository,
|
|
isArchived: true,
|
|
});
|
|
|
|
expect(queryByTestId(document.body, "badge")).toHaveTextContent("Archived");
|
|
|
|
document.body.innerHTML = renderRepoCard({
|
|
...data_repo.repository,
|
|
isTemplate: true,
|
|
});
|
|
expect(queryByTestId(document.body, "badge")).toHaveTextContent("Template");
|
|
});
|
|
|
|
it("should not render template", () => {
|
|
document.body.innerHTML = renderRepoCard({
|
|
...data_repo.repository,
|
|
});
|
|
expect(queryByTestId(document.body, "badge")).toBeNull();
|
|
});
|
|
|
|
it("should render translated badges", () => {
|
|
document.body.innerHTML = renderRepoCard(
|
|
{
|
|
...data_repo.repository,
|
|
isArchived: true,
|
|
},
|
|
{
|
|
locale: "cn",
|
|
},
|
|
);
|
|
|
|
expect(queryByTestId(document.body, "badge")).toHaveTextContent("已归档");
|
|
|
|
document.body.innerHTML = renderRepoCard(
|
|
{
|
|
...data_repo.repository,
|
|
isTemplate: true,
|
|
},
|
|
{
|
|
locale: "cn",
|
|
},
|
|
);
|
|
expect(queryByTestId(document.body, "badge")).toHaveTextContent("模板");
|
|
});
|
|
|
|
it("should render without rounding", () => {
|
|
document.body.innerHTML = renderRepoCard(data_repo.repository, {
|
|
border_radius: "0",
|
|
});
|
|
expect(document.querySelector("rect")).toHaveAttribute("rx", "0");
|
|
document.body.innerHTML = renderRepoCard(data_repo.repository, {});
|
|
expect(document.querySelector("rect")).toHaveAttribute("rx", "4.5");
|
|
});
|
|
|
|
it("should fallback to default description", () => {
|
|
document.body.innerHTML = renderRepoCard({
|
|
...data_repo.repository,
|
|
description: undefined,
|
|
isArchived: true,
|
|
});
|
|
expect(document.getElementsByClassName("description")[0]).toHaveTextContent(
|
|
"No description provided",
|
|
);
|
|
});
|
|
});
|