@sdc-monitor/demo
Version:
<div align="center"> <a href="#" target="_blank"> <img src="https://i.loli.net/2021/07/28/EvPwd4NjVH3tBfO.jpg" alt="mito-logo" height="90"> </a> <p>A Lightweight SDK For Monitor Web</p>
196 lines (184 loc) • 6.76 kB
text/typescript
import { ErrorTypes, HttpTypes } from '@sdc-monitor/shared'
import { ReportDataType } from '@sdc-monitor/types'
import {
createErrorId,
getFlutterRealOrigin,
getFlutterRealPath,
getRealPath,
sortObjByKey,
Severity,
stringToObjAndOrder
} from '../src/index'
describe('errorId.ts', () => {
const apikey = '13213-1231-1231'
describe('createErrorId func', () => {
it('两个http Error应该生成不同的errorId', () => {
const httpError_1: ReportDataType = {
type: ErrorTypes.HTTP,
url: 'http://localhost:2021/JS/index.html',
time: 1609210351040,
elapsedTime: 948,
level: 'low',
message: 'http请求失败,失败原因:跨域限制或域名不存在',
name: 'xhr--GET',
request: { httpType: HttpTypes.XHR, method: 'GET', url: 'http://aaaa.aaa/info2', data: '' },
response: { status: 0, data: '' }
}
const httpError_2: ReportDataType = {
type: ErrorTypes.HTTP,
url: 'http://localhost:2021/JS/index.html',
time: 1609210351040,
elapsedTime: 948,
level: 'low',
message: 'http请求失败,失败原因:跨域限制或域名不存在',
name: 'xhr--GET',
request: { httpType: HttpTypes.XHR, method: 'POST', url: 'http://aaaa.aaa/info2', data: '' },
response: { status: 0, data: '' }
}
const errorId_1 = createErrorId(httpError_1, apikey, 2)
const errorId_2 = createErrorId(httpError_2, apikey, 2)
expect(errorId_1).not.toBe(errorId_2)
})
it('两个相同的httpError应该生成相同的id', () => {
const httpError_3: ReportDataType = {
type: ErrorTypes.HTTP,
url: 'http://localhost:2021/JS/index.html',
time: 1609210351040,
elapsedTime: 948,
level: 'low',
message: 'http请求失败,失败原因:跨域限制或域名不存在',
name: 'xhr--GET',
request: { httpType: HttpTypes.XHR, method: 'GET', url: 'http://aaaa', data: '' },
response: { status: 0, data: '' }
}
const errorId_1 = createErrorId(httpError_3, apikey, 2)
const errorId_2 = createErrorId(httpError_3, apikey, 2)
expect(errorId_1).toBe(errorId_2)
})
it('两个相同的对象,但顺序不同,但是结果应该是相同', () => {
const logError_1: ReportDataType = {
type: ErrorTypes.LOG,
level: Severity.Critical,
message: '{"one":111}',
name: 'MITO.log',
customTag: '测试',
time: 1609211248523,
url: 'http://localhost:2021/JS/index.html'
}
const logError_2: ReportDataType = {
message: '{"one":111}',
name: 'MITO.log',
customTag: '测试',
time: 1609211248523,
level: Severity.Critical,
type: ErrorTypes.LOG,
url: 'http://localhost:2021/JS/index.html'
}
const errorId_1 = createErrorId(logError_1, apikey, 2)
const errorId_2 = createErrorId(logError_2, apikey, 2)
expect(errorId_1).toBe(errorId_2)
})
it('一个错误对象生成两次后,默认情况下第三次会返回null,可配置maxDuplicateCount', () => {
const logError_1: ReportDataType = {
type: ErrorTypes.LOG,
level: Severity.Critical,
message: '{"one":111}',
name: 'MITO.log',
customTag: '测试',
time: 1609211248523,
url: 'http://localhost:2021/JS/index.html'
}
const errorId_1 = createErrorId(logError_1, apikey, 2)
const errorId_2 = createErrorId(logError_1, apikey, 2)
const errorId_3 = createErrorId(logError_1, apikey, 2)
expect(errorId_1).toBe(errorId_2)
expect(errorId_3).toBeNull()
})
it('should promise error distinguish unhandledrejection or other', () => {
const error_1: ReportDataType = {
type: ErrorTypes.PROMISE,
level: Severity.Low,
message: 'a is not defined',
name: 'unhandledrejection',
time: 1609211248523,
url: 'http://localhost:2021/JS/index.html'
}
const error_2: ReportDataType = {
type: ErrorTypes.PROMISE,
level: Severity.Low,
message: 'a is not defined',
name: 'typeError',
time: 1609211248523,
url: 'http://localhost:2021/JS/index.html'
}
const errorId_1 = createErrorId(error_1, apikey, 2)
const errorId_2 = createErrorId(error_2, apikey, 2)
expect(errorId_1).not.toBe(errorId_2)
})
it('default case createErrorId', () => {
const else_error = {
// not one of ErrorTypes
type: 'else_' as ErrorTypes,
level: Severity.Critical,
message: '{"one":111}',
name: 'MITO.log',
customTag: '测试',
time: 1609211248523,
url: 'http://localhost:2021/JS/index.html'
}
expect(createErrorId(else_error, apikey, 2)).not.toBeNull()
})
})
it('should sortObjByKey func work', () => {
const beforeOrderObj = {
b: 1,
a: 2,
c: {
e: 3,
d: 4
}
}
const afterOrderObj = {
a: 2,
b: 1,
c: {
d: 4,
e: 3
}
}
expect(JSON.stringify(sortObjByKey(beforeOrderObj))).toBe(JSON.stringify(afterOrderObj))
})
it('should stringToObjAndOrder func work', () => {
const beforeOrderObjString = '{"b":1,"a":2,"c":3}'
const afterOrderObj = {
a: 2,
b: 1,
c: 3
}
expect(stringToObjAndOrder(beforeOrderObjString)).toBe(JSON.stringify(afterOrderObj))
// return param when is not object string
expect(stringToObjAndOrder('11')).toBe('11')
const isNotObjectString = '{"b":1,"a":2,"c":3}}'
expect(stringToObjAndOrder(isNotObjectString)).toBe(isNotObjectString)
})
describe('getRealPath should work', () => {
it('删除多余的query参数', () => {
const url = 'http://a/b/c/project?id=1#a'
expect(getRealPath(url)).toBe('http://a/b/c/project')
})
it('去掉多余{param}', () => {
const url = 'http://a/b/c/project/info/18'
expect(getRealPath(url)).toBe('http://a/b/c/project/info/{param}')
})
})
it('should getFlutterRealPath func work', () => {
const url =
'file:///var/mobile/Containers/Data/Application/D1A0783A-2495-41B4-8599-EC58B5B252CD/Documents/SailerBuild/36/index.html?/#/search-page'
expect(getFlutterRealPath(url)).toBe('SailerBuild/36/index.html?/#/search-page')
})
it('should getFlutterRealOrigin func work', () => {
const url =
'file:///var/mobile/Containers/Data/Application/D1A0783A-2495-41B4-8599-EC58B5B252CD/Documents/SailerBuild/36/index.html?/#/search-page'
expect(getFlutterRealOrigin(url)).toBe('SailerBuild/36/index.html?')
})
})