1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-19 06:41:33 +03:00
leon/test/unit/server/helpers/os.spec.js

46 lines
1.2 KiB
JavaScript
Raw Normal View History

2019-02-10 15:26:50 +03:00
'use strict'
import os from '@/helpers/os'
describe('OS helper', () => {
describe('get()', () => {
test('returns information about the OS', () => {
const info = os.get()
expect(info.type).toBeOneOf(['windows', 'linux', 'macos'])
expect(info.name).toBeOneOf(['Windows', 'Linux', 'macOS'])
})
test('returns information for Windows', () => {
jest.unmock('os')
const o = require.requireActual('os')
o.type = jest.fn(() => 'Windows_NT')
expect(os.get()).toEqual({ name: 'Windows', type: 'windows' })
})
test('returns information for Linux', () => {
jest.unmock('os')
const o = require.requireActual('os')
o.type = jest.fn(() => 'Linux')
expect(os.get()).toEqual({ name: 'Linux', type: 'linux' })
})
test('returns information for macOS', () => {
jest.unmock('os')
const o = require.requireActual('os')
o.type = jest.fn(() => 'Darwin')
expect(os.get()).toEqual({ name: 'macOS', type: 'macos' })
})
})
describe('cpus()', () => {
test('returns the number of cores on the machine', () => {
expect(os.cpus()).toBeArray()
expect(os.cpus()[0]).toContainKeys(['model', 'speed', 'times'])
})
})
})