/* * Copyright (c) 2020 - present Cloudogu GmbH * * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU Affero General Public License as published by the Free * Software Foundation, version 3. * * 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 Affero General Public License for more * details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see https://www.gnu.org/licenses/. */ import { Branch, BranchCollection, Repository } from "@scm-manager/ui-types"; import fetchMock from "fetch-mock-jest"; import { renderHook } from "@testing-library/react-hooks"; import createWrapper from "./tests/createWrapper"; import createInfiniteCachingClient from "./tests/createInfiniteCachingClient"; import { useBranch, useBranches, useCreateBranch, useDeleteBranch } from "./branches"; import { act } from "react-test-renderer"; describe("Test branches hooks", () => { const repository: Repository = { namespace: "hitchhiker", name: "heart-of-gold", type: "hg", _links: { branches: { href: "/hog/branches" } } }; const develop: Branch = { name: "develop", revision: "42", lastCommitter: { name: "trillian" }, _links: { delete: { href: "/hog/branches/develop" } } }; const feature: Branch = { name: "feature/something-special", revision: "42", lastCommitter: { name: "trillian" }, _links: { delete: { href: "/hog/branches/feature%2Fsomething-special" } } }; const branches: BranchCollection = { _embedded: { branches: [develop] }, _links: {} }; const queryClient = createInfiniteCachingClient(); beforeEach(() => { queryClient.clear(); }); afterEach(() => { fetchMock.reset(); }); describe("useBranches tests", () => { const fetchBrances = async () => { fetchMock.getOnce("/api/v2/hog/branches", branches); const { result, waitFor } = renderHook(() => useBranches(repository), { wrapper: createWrapper(undefined, queryClient) }); await waitFor(() => { return !!result.current.data; }); return result.current.data; }; it("should return branches", async () => { const branches = await fetchBrances(); expect(branches).toEqual(branches); }); it("should add branches to cache", async () => { await fetchBrances(); const data = queryClient.getQueryData([ "repository", "hitchhiker", "heart-of-gold", "branches" ]); expect(data).toEqual(branches); }); }); describe("useBranch tests", () => { const fetchBranch = async (name: string, branch: Branch) => { fetchMock.getOnce("/api/v2/hog/branches/" + encodeURIComponent(name), branch); const { result, waitFor } = renderHook(() => useBranch(repository, name), { wrapper: createWrapper(undefined, queryClient) }); expect(result.error).toBeUndefined(); await waitFor(() => { return !!result.current.data; }); return result.current.data; }; it("should return branch", async () => { const branch = await fetchBranch("develop", develop); expect(branch).toEqual(develop); }); it("should escape branch name", async () => { const branch = await fetchBranch("feature/something-special", feature); expect(branch).toEqual(feature); }); }); describe("useCreateBranch tests", () => { const createBranch = async () => { fetchMock.postOnce("/api/v2/hog/branches", { status: 201, headers: { Location: "/hog/branches/develop" } }); fetchMock.getOnce("/api/v2/hog/branches/develop", develop); const { result, waitForNextUpdate } = renderHook(() => useCreateBranch(repository), { wrapper: createWrapper(undefined, queryClient) }); await act(() => { const { create } = result.current; create({ name: "develop", parent: "main" }); return waitForNextUpdate(); }); return result.current; }; it("should create branch", async () => { const { branch } = await createBranch(); expect(branch).toEqual(develop); }); it("should cache created branch", async () => { await createBranch(); const branch = queryClient.getQueryData([ "repository", "hitchhiker", "heart-of-gold", "branch", "develop" ]); expect(branch).toEqual(develop); }); it("should invalidate cached branches list", async () => { queryClient.setQueryData(["repository", "hitchhiker", "heart-of-gold", "branches"], branches); await createBranch(); const queryState = queryClient.getQueryState(["repository", "hitchhiker", "heart-of-gold", "branches"]); expect(queryState!.isInvalidated).toBe(true); }); }); describe("useDeleteBranch tests", () => { const deleteBranch = async () => { fetchMock.deleteOnce("/api/v2/hog/branches/develop", { status: 204 }); const { result, waitForNextUpdate } = renderHook(() => useDeleteBranch(repository), { wrapper: createWrapper(undefined, queryClient) }); await act(() => { const { remove } = result.current; remove(develop); return waitForNextUpdate(); }); return result.current; }; it("should delete branch", async () => { const { isDeleted } = await deleteBranch(); expect(isDeleted).toBe(true); }); it("should delete branch cache", async () => { queryClient.setQueryData(["repository", "hitchhiker", "heart-of-gold", "branch", "develop"], develop); await deleteBranch(); const queryState = queryClient.getQueryState(["repository", "hitchhiker", "heart-of-gold", "branch", "develop"]); expect(queryState).toBeUndefined(); }); it("should invalidate cached branches list", async () => { queryClient.setQueryData(["repository", "hitchhiker", "heart-of-gold", "branches"], branches); await deleteBranch(); const queryState = queryClient.getQueryState(["repository", "hitchhiker", "heart-of-gold", "branches"]); expect(queryState!.isInvalidated).toBe(true); }); }); });