Browse Source

more branch cov

pull/1295/head
Martin McKeaveney 5 years ago
parent
commit
b7a230065b
  1. 2
      packages/server/__mocks__/node-fetch.js
  2. 1
      packages/server/build/pouchdb.js
  3. 9
      packages/server/src/integrations/tests/couchdb.spec.js
  4. 6
      packages/server/src/integrations/tests/rest.spec.js
  5. 1
      packages/server/src/middleware/tests/authenticated.spec.js

2
packages/server/__mocks__/node-fetch.js

@ -1,6 +1,6 @@
const fetch = jest.requireActual("node-fetch")
module.exports = async url , opts=> {
module.exports = async (url, opts) => {
// mocked data based on url
if (url.includes("api/apps")) {
return {

1
packages/server/__mocks__/pouchdb.js → packages/server/build/pouchdb.js

@ -3,6 +3,7 @@ function CouchDB() {
this.allDocs = jest.fn(() => ({ rows: [] }))
this.put = jest.fn()
this.remove = jest.fn()
this.plugin = jest.fn()
}
module.exports = CouchDB

9
packages/server/src/integrations/tests/couchdb.spec.js

@ -1,6 +1,13 @@
const PouchDB = require("pouchdb")
const CouchDBIntegration = require("../couchdb")
jest.mock("pouchdb")
jest.mock("pouchdb", () => function CouchDBMock() {
this.post = jest.fn()
this.allDocs = jest.fn(() => ({ rows: [] }))
this.put = jest.fn()
this.remove = jest.fn()
this.plugin = jest.fn()
})
class TestConfiguration {
constructor(config = {}) {

6
packages/server/src/integrations/tests/rest.spec.js

@ -1,6 +1,6 @@
const fetch = require("node-fetch")
const RestIntegration = require("../rest")
jest.mock("node-fetch", () => jest.fn(() => ({ json: jest.fn() })))
jest.mock("node-fetch", () => jest.fn(() => ({ json: jest.fn(), text: jest.fn() })))
class TestConfiguration {
constructor(config = {}) {
@ -44,13 +44,13 @@ describe("REST Integration", () => {
path: "/api",
queryString: "?test=1",
headers: {
Accept: "application/json"
Accept: "text/html"
}
}
const response = await config.integration.read(query)
expect(fetch).toHaveBeenCalledWith(`${BASE_URL}/api?test=1`, {
headers: {
Accept: "application/json"
Accept: "text/html"
}
})
})

1
packages/server/src/middleware/tests/authenticated.spec.js

@ -2,7 +2,6 @@ const { AuthTypes } = require("../../constants")
const authenticatedMiddleware = require("../authenticated")
const jwt = require("jsonwebtoken")
jest.mock("jsonwebtoken")
jest.dontMock("pouchdb")
class TestConfiguration {
constructor(middleware) {

Loading…
Cancel
Save