Testing InstanceTooltip Component Rendering in Apache Airflow
This test suite validates the InstanceTooltip component in Apache Airflow’s web interface, focusing on task instance status display and tooltip rendering. The tests cover various task types including normal tasks, mapped tasks, and task groups with different states and configurations.
Test Coverage Overview
Implementation Analysis
Technical Details
Best Practices Demonstrated
apache/airflow
airflow/www/static/js/components/InstanceTooltip.test.tsx
/*!
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/* global describe, test, expect */
import React from "react";
import { render } from "@testing-library/react";
import { Wrapper } from "src/utils/testUtils";
import type { TaskState } from "src/types";
import InstanceTooltip from "./InstanceTooltip";
const instance = {
startDate: new Date().toISOString(),
endDate: new Date().toISOString(),
state: "success" as TaskState,
runId: "run",
taskId: "task",
note: "",
};
describe("Test Task InstanceTooltip", () => {
test("Displays a normal task", () => {
const { getByText, queryByText } = render(
<InstanceTooltip
group={{
id: "task",
label: "task",
instances: [],
triggerRule: "all_failed",
}}
instance={instance}
/>,
{ wrapper: Wrapper }
);
expect(getByText("Trigger Rule: all_failed")).toBeDefined();
expect(getByText("Status: success")).toBeDefined();
expect(queryByText("Contains a note")).toBeNull();
expect(getByText("Duration: 00:00:00")).toBeDefined();
});
test("Displays a mapped task with overall status", () => {
const { getByText } = render(
<InstanceTooltip
group={{
id: "task",
label: "task",
instances: [],
isMapped: true,
}}
instance={{ ...instance, mappedStates: { success: 2 } }}
/>,
{ wrapper: Wrapper }
);
expect(getByText("Overall Status: success")).toBeDefined();
expect(getByText("2 mapped tasks")).toBeDefined();
expect(getByText("success: 2")).toBeDefined();
});
test("Displays a task group with overall status", () => {
const { getByText, queryByText } = render(
<InstanceTooltip
group={{
id: "task",
label: "task",
instances: [],
children: [
{
id: "child_task",
label: "child_task",
instances: [
{
taskId: "child_task",
runId: "run",
state: "success",
startDate: "",
endDate: "",
note: "",
},
],
},
],
}}
instance={instance}
/>,
{ wrapper: Wrapper }
);
expect(getByText("Overall Status: success")).toBeDefined();
expect(queryByText("mapped task")).toBeNull();
expect(getByText("success: 1")).toBeDefined();
});
test("Mentions a task with a note", () => {
const { getByText } = render(
<InstanceTooltip
group={{ id: "task", label: "task", instances: [] }}
instance={{ ...instance, note: "note" }}
/>,
{ wrapper: Wrapper }
);
expect(getByText("Contains a note")).toBeInTheDocument();
});
test("Hides duration if there is no start date", () => {
const { queryByText, getByText } = render(
<InstanceTooltip
group={{ id: "task", label: "task", instances: [] }}
instance={{ ...instance, startDate: null }}
/>,
{ wrapper: Wrapper }
);
expect(getByText("Status: success")).toBeDefined();
expect(queryByText("Duration: 00:00:00")).toBeNull();
});
});