fleet/frontend/test/stubs.js
Gabe Hernandez efb35b537a
add prettier and have it format all fleet application code (#625)
* add prettier and have it format all js code except website:
:

* trying running prettier check in CI

* fix runs on in CI

* change CI job name

* fix prettier erros and fix CI
2021-04-12 14:32:25 +01:00

205 lines
4.1 KiB
JavaScript

export const adminUserStub = {
id: 1,
admin: true,
email: "hi@gnar.dog",
name: "Gnar Mike",
username: "gnardog",
};
export const configStub = {
org_info: {
org_name: "Kolide",
org_logo_url: "0.0.0.0:8080/logo.png",
},
server_settings: {
kolide_server_url: "",
live_query_disabled: false,
},
smtp_settings: {
configured: false,
domain: "",
sender_address: "",
server: "",
port: 587,
authentication_type: "authtype_username_password",
user_name: "",
password: "",
enable_ssl_tls: true,
authentication_method: "authmethod_plain",
verify_ssl_certs: true,
enable_start_tls: true,
},
host_expiry_settings: {
host_expiry_enabled: false,
host_expiry_window: 0,
},
};
export const flatConfigStub = {
org_name: "Kolide",
org_logo_url: "0.0.0.0:8080/logo.png",
kolide_server_url: "",
configured: false,
domain: "",
sender_address: "",
server: "",
port: 587,
authentication_type: "authtype_username_password",
user_name: "",
password: "",
enable_ssl_tls: true,
authentication_method: "authmethod_plain",
verify_ssl_certs: true,
enable_start_tls: true,
host_expiry_enabled: false,
host_expiry_window: 0,
live_query_disabled: false,
};
export const hostStub = {
created_at: "2017-01-10T19:18:55Z",
updated_at: "2017-01-10T20:13:52Z",
id: 1,
detail_updated_at: "2017-01-10T20:01:48Z",
seen_time: "2017-01-10T20:13:54Z",
hostname: "52883a0ba916",
uuid: "FD87130B-09A9-683D-9095-D92CD20728CA",
platform: "ubuntu",
osquery_version: "2.1.2",
os_version: "Ubuntu 14.4.",
build: "",
platform_like: "debian",
code_name: "",
uptime: 45469000000000,
memory: 2094940160,
cpu_type: "6",
cpu_subtype: "78",
cpu_brand: "Intel(R) Core(TM) i5-6267U CPU @ 2.90GHz",
cpu_physical_cores: 2,
cpu_logical_cores: 2,
hardware_vendor: " ",
hardware_model: "BHYVE",
hardware_version: "1.0",
hardware_serial: "None",
computer_name: "52883a0ba916",
primary_ip: "172.19.0.8",
primary_mac: "02:42:ac:13:00:08",
status: "online",
display_text: "52883a0ba916",
target_type: "hosts",
host_cpu: "1 x 2.4Ghz",
};
export const labelStub = {
created_at: "2017-01-16T23:11:01Z",
updated_at: "2017-01-16T23:11:01Z",
id: 1,
name: "All Hosts",
description: "",
query: "select 1;",
platform: "",
label_type: 1,
display_text: "All Hosts",
count: 20,
online: 20,
offline: 0,
missing_in_action: 0,
host_ids: [],
type: "all",
target_type: "labels",
};
export const packStub = {
created_at: "0001-01-01T00:00:00Z",
updated_at: "0001-01-01T00:00:00Z",
id: 3,
name: "Pack Name",
description: "Pack Description",
platform: "",
created_by: 1,
disabled: false,
host_ids: [],
label_ids: [],
};
export const queryStub = {
created_at: "2016-10-17T07:06:00Z",
description: "",
differential: false,
id: 1,
interval: 0,
name: "dev_query_1",
platform: "",
query: "select * from processes",
snapshot: false,
updated_at: "2016-10-17T07:06:00Z",
version: "",
};
export const scheduledQueryStub = {
id: 1,
interval: 60,
name: "Get all users",
query_name: "users",
pack_id: 123,
platform: "darwin",
query: "SELECT * FROM users",
query_id: 5,
removed: false,
shard: 12,
snapshot: true,
};
export const userStub = {
id: 1,
admin: false,
email: "hi@gnar.dog",
enabled: true,
name: "Gnar Mike",
username: "gnardog",
};
const queryResultStub = {
description: "root",
directory: "/root",
gid: "0",
gid_signed: "0",
groupname: "root",
host_hostname: hostStub.hostname,
};
export const campaignStub = {
hosts: [hostStub, { ...hostStub, id: 100 }],
hosts_count: {
failed: 0,
successful: 2,
total: 2,
},
Metrics: {
OnlineHosts: 2,
OfflineHosts: 0,
},
id: 1,
query_id: queryStub.id,
query_results: [queryResultStub],
totals: {
count: 2,
missing_in_action: 0,
offline: 0,
online: 2,
},
};
export default {
adminUserStub,
campaignStub,
configStub,
flatConfigStub,
hostStub,
labelStub,
packStub,
queryStub,
scheduledQueryStub,
userStub,
};