fleet/frontend/__mocks__
Jacob Shandling be0ce917c1
UI - Add global "Disable query reports" setting to advanced org settings (#14268)
## Addresses #13474 

<img width="842" alt="Screenshot 2023-10-03 at 11 38 12 AM"
src="https://github.com/fleetdm/fleet/assets/61553566/b8f0d81f-ba41-458f-acb5-2224e2774ef8">
- small alignment issues with tooltip-wrapped text should be fixed by
upcoming TooltipWrapper refactor PR

## Checklist for submitter

- [x] Manual QA for all new/changed functionality

---------

Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
2023-10-04 11:31:26 -07:00
..
activityMock.ts Add new activity types for login and user modifications (#9101) 2022-12-22 14:24:13 -06:00
appleMdm.ts Feat UI update macos windows setup (#12744) 2023-07-17 15:51:40 +01:00
axiosError.ts Feat UI update macos windows setup (#12744) 2023-07-17 15:51:40 +01:00
configMock.ts UI - Add global "Disable query reports" setting to advanced org settings (#14268) 2023-10-04 11:31:26 -07:00
deviceUserMock.ts integration test device user page with mock and custom renderer (#8475) 2022-11-01 18:59:40 +00:00
fileMock.js add prettier and have it format all fleet application code (#625) 2021-04-12 14:32:25 +01:00
hostMock.ts add verified status to UI for profile statuses (#11886) 2023-06-06 15:52:10 +01:00
licenseMock.ts integration test device user page with mock and custom renderer (#8475) 2022-11-01 18:59:40 +00:00
macAdminsMock.ts UI for bootstrap package flows (#11288) 2023-04-27 16:10:41 +01:00
mdmMock.ts add verified status to UI for profile statuses (#11886) 2023-06-06 15:52:10 +01:00
osqueryTableMock.ts Fleet Frontend: Create integration tests QuerySidePanel.tests.tsx (#12179) 2023-06-07 12:01:59 -04:00
policyMock.ts Fleet Premium to Sandbox (#11372) 2023-04-27 08:53:30 -07:00
queryMock.ts Fleet UI: Disable save button for invalid sql or name (#12994) 2023-08-09 16:24:46 -04:00
README.md Add new activity types for login and user modifications (#9101) 2022-12-22 14:24:13 -06:00
scheduleableQueryMock.ts Fleet UI: New manage query automations modal (#12747) 2023-07-27 13:47:54 -07:00
scriptMock.ts fix formatting on the script content and output UI (#14048) 2023-09-22 12:52:27 +01:00
softwareMock.ts integration test device user page with mock and custom renderer (#8475) 2022-11-01 18:59:40 +00:00
teamMock.ts refactor activity items and add query name to live_query activity type (#8740) 2022-11-17 14:25:40 +00:00
userMock.ts integration test device user page with mock and custom renderer (#8475) 2022-11-01 18:59:40 +00:00

Frontend mocks

Each __mocks___/*Mock.ts file contains one or more default mock objects and their corresponding helper function to partially override the default mock creating custom mocks.

Table of contents

Default mocks

Default mocks are simple to work with objects. We limit the default mock to a single object that can be modified with the helper function as needed using overrides.

The default mock object is returned by calling the helper function with no arguments.

Example

A single default activity is defined in __mocks__/activityMock.ts as:

const DEFAULT_ACTIVITY_MOCK: IActivity = {
  created_at: "2022-11-03T17:22:14Z",
  id: 1,
  actor_full_name: "Test",
  actor_id: 1,
  actor_gravatar: "",
  actor_email: "test@example.com",
  type: ActivityType.EditedAgentOptions,
};

To return this default object, call its helper function createActivityMock() with no arguments.

Custom mocks

Custom mocks are useful when we need a mock object with specific data.

Use the helper function with arguments to override the default mock data with the specific data you need.

Example

createMockActivity({ id: 2, actor_full_name: "Gabe" }) will return modifications to the DEFAULT_ACTIVITY_MOCK to override the id and actor_full_name keys only.

Check out the frontend test directory for information about our unit and integration testing layers. We use default mocks and custom mocks when mocking server requests.

Follow this guide to run tests locally.

Visit the frontend overview of Fleet UI testing for more information on our testing strategy, philosophies, and tools.