061a3d9a89
* configurable host overrides * base host overrides on name of service instead of key and hide the options by default * added unit tests * review changes * Refactor options * Refactor * Update Readme * Pump version and update Changelog Co-authored-by: Tobias Jacksteit <me@xtj7.de>
189 lines
7.3 KiB
JavaScript
189 lines
7.3 KiB
JavaScript
import remoteServices from "../../src/js/remoteServices"
|
|
import { createMatcher, createEnhancer } from "../../src/js/utils/urlMatcher"
|
|
|
|
describe("utils", () => {
|
|
describe("urlMatcher", () => {
|
|
let matcher
|
|
|
|
beforeEach(() => {
|
|
matcher = createMatcher(remoteServices, {})
|
|
})
|
|
|
|
describe("createMatcher", () => {
|
|
it("matches host and path", () => {
|
|
const service = matcher("https://github.com/hundertzehn/mocoapp/pull/123")
|
|
expect(service.key).toEqual("github-pr")
|
|
expect(service.name).toEqual("github")
|
|
})
|
|
|
|
it("matches query string", () => {
|
|
let service = matcher(
|
|
"https://moco-bx.atlassian.net/secure/RapidBoard.jspa?rapidView=2&projectKey=TEST1&modal=detail&selectedIssue=TEST1-1",
|
|
)
|
|
expect(service.key).toEqual("jira")
|
|
expect(service.name).toEqual("jira")
|
|
expect(service.org).toEqual("moco-bx")
|
|
expect(service.projectId).toEqual("TEST1")
|
|
expect(service.id).toEqual("TEST1-1")
|
|
expect(service.match.org).toEqual("moco-bx")
|
|
expect(service.match.projectId).toEqual("TEST1")
|
|
expect(service.match.id).toEqual("TEST1-1")
|
|
|
|
service = matcher(
|
|
"https://moco-bx.atlassian.net/secure/RapidBoard.jspa?rapidView=2&projectKey=TEST1&modal=detail",
|
|
)
|
|
expect(service.key).toEqual("jira")
|
|
expect(service.name).toEqual("jira")
|
|
expect(service.org).toEqual("moco-bx")
|
|
expect(service.projectId).toEqual("TEST1")
|
|
expect(service.id).toBeUndefined()
|
|
expect(service.match.org).toEqual("moco-bx")
|
|
expect(service.match.projectId).toEqual("TEST1")
|
|
expect(service.match.id).toBeUndefined()
|
|
|
|
service = matcher(
|
|
"https://moco-bx.atlassian.net/secure/RapidBoard.jspa?rapidView=2&projectKey=TEST1&modal=detail&selectedIssue=",
|
|
)
|
|
expect(service.key).toEqual("jira")
|
|
expect(service.name).toEqual("jira")
|
|
expect(service.org).toEqual("moco-bx")
|
|
expect(service.projectId).toEqual("TEST1")
|
|
expect(service.id).toEqual("")
|
|
expect(service.match.org).toEqual("moco-bx")
|
|
expect(service.match.projectId).toEqual("TEST1")
|
|
expect(service.match.id).toEqual("")
|
|
|
|
service = matcher("https://moco-bx.atlassian.net/secure/RapidBoard.jspa")
|
|
expect(service.key).toEqual("jira")
|
|
expect(service.name).toEqual("jira")
|
|
expect(service.match.org).toEqual("moco-bx")
|
|
expect(service.match.projectId).toBeUndefined()
|
|
expect(service.match.id).toBeUndefined()
|
|
|
|
service = matcher(
|
|
"https://moco-bx.atlassian.net/secure/RapidBoard.jspa?rapidView=2&modal=detail&selectedIssue=TEST2-1",
|
|
)
|
|
expect(service.key).toEqual("jira")
|
|
expect(service.name).toEqual("jira")
|
|
expect(service.org).toEqual("moco-bx")
|
|
expect(service.projectId).toBeUndefined()
|
|
expect(service.id).toEqual("TEST2-1")
|
|
expect(service.match.org).toEqual("moco-bx")
|
|
expect(service.match.projectId).toBeUndefined()
|
|
expect(service.match.id).toEqual("TEST2-1")
|
|
})
|
|
|
|
it("matches url with hash", () => {
|
|
let service = matcher("https://www.wunderlist.com/webapp#/tasks/4771178545")
|
|
expect(service.key).toEqual("wunderlist")
|
|
expect(service.name).toEqual("wunderlist")
|
|
expect(service.match.id).toEqual("4771178545")
|
|
})
|
|
|
|
it("does not match different host", () => {
|
|
const service = matcher("https://trello.com/hundertzehn/mocoapp/pull/123")
|
|
expect(service).toBeFalsy()
|
|
})
|
|
|
|
it("matches query string in the hash", () => {
|
|
const service = matcher(
|
|
"https://www.wrike.com/workspace.htm?acc=2771711#path=folder&id=342769537&p=342762920&a=2771711&c=board&ot=342769562&so=10&bso=10&sd=0&st=space-342762920",
|
|
)
|
|
expect(service.key).toEqual("wrike")
|
|
expect(service.name).toEqual("wrike")
|
|
expect(service.id).toEqual("342769562")
|
|
expect(service.match.id).toEqual("342769562")
|
|
})
|
|
|
|
it("matches query parameter with different names", () => {
|
|
expect(
|
|
matcher(
|
|
"https://www.wrike.com/workspace.htm?acc=2771711#path=mywork&id=342769537&p=342762920&a=2771711&c=board&ot=1234&so=10&bso=10&sd=0&st=space-342762920",
|
|
).id,
|
|
).toEqual("1234")
|
|
|
|
expect(
|
|
matcher(
|
|
"https://www.wrike.com/workspace.htm?acc=2771711#path=folder&id=342769537&p=342762920&a=2771711&c=board&t=1234&so=10&bso=10&sd=0&st=space-342762920",
|
|
).id,
|
|
).toEqual("1234")
|
|
})
|
|
|
|
it("should match gitlab-mergerequest url", () => {
|
|
const service = matcher(
|
|
"https://gitlab.com/testorganisatzion/testproject/-/merge_requests/1",
|
|
)
|
|
expect(service.id).toEqual("1")
|
|
expect(service.match.id).toEqual("1")
|
|
expect(service.name).toEqual("gitlab")
|
|
expect(service.projectId).toEqual("testproject")
|
|
})
|
|
it("should match gitlab-mergerequest url with group", () => {
|
|
const service = matcher(
|
|
"https://gitlab.com/testorganisatzion/test-group/testproject/-/merge_requests/1",
|
|
)
|
|
expect(service.id).toEqual("1")
|
|
expect(service.match.id).toEqual("1")
|
|
expect(service.name).toEqual("gitlab")
|
|
expect(service.projectId).toEqual("testproject")
|
|
})
|
|
|
|
it("should match gitlab-issue url", () => {
|
|
const service = matcher("https://gitlab.com/testorganisatzion/testproject/-/issues/1")
|
|
expect(service.id).toEqual("1")
|
|
expect(service.match.id).toEqual("1")
|
|
expect(service.name).toEqual("gitlab")
|
|
expect(service.projectId).toEqual("testproject")
|
|
})
|
|
|
|
it("should match gitlab-issue url with group", () => {
|
|
const service = matcher(
|
|
"https://gitlab.com/testorganisatzion/test-group/testproject/-/issues/1",
|
|
)
|
|
expect(service.id).toEqual("1")
|
|
expect(service.match.id).toEqual("1")
|
|
expect(service.name).toEqual("gitlab")
|
|
expect(service.projectId).toEqual("testproject")
|
|
})
|
|
})
|
|
|
|
describe("createEnhancer", () => {
|
|
it("enhances a services", () => {
|
|
const url = "https://github.com/hundertzehn/mocoapp/pull/123"
|
|
const document = {
|
|
querySelector: jest.fn().mockReturnValue({ textContent: "[4321] Foo" }),
|
|
}
|
|
const service = matcher(url)
|
|
const enhancedService = createEnhancer(document)(service)
|
|
expect(enhancedService.id).toEqual("github-pr.hundertzehn.mocoapp.123")
|
|
expect(enhancedService.description).toEqual("[4321] Foo")
|
|
expect(enhancedService.projectId).toEqual("4321")
|
|
expect(enhancedService.taskId).toBe(undefined)
|
|
})
|
|
})
|
|
})
|
|
|
|
describe("urlMatcher with overrideHosts", () => {
|
|
let matcher
|
|
|
|
beforeEach(() => {
|
|
matcher = createMatcher(remoteServices, {
|
|
github: "https://my-custom-github-url.com",
|
|
})
|
|
})
|
|
|
|
describe("createMatcher", () => {
|
|
it("matches overridden host and path", () => {
|
|
const service = matcher("https://my-custom-github-url.com/hundertzehn/mocoapp/pull/123")
|
|
expect(service.key).toEqual("github-pr")
|
|
expect(service.name).toEqual("github")
|
|
})
|
|
|
|
it("doesn't match default host and path", () => {
|
|
const service = matcher("https://github.com/hundertzehn/mocoapp/pull/123")
|
|
expect(service).toBe(undefined)
|
|
})
|
|
})
|
|
})
|
|
})
|