1
0
mirror of https://github.com/bigchaindb/js-bigchaindb-driver.git synced 2024-11-22 09:46:58 +01:00

Writing test for baserequest

This commit is contained in:
michielmulders 2017-09-27 15:37:49 +02:00
parent ce9e88bac3
commit f82cbd6526

View File

@ -7,6 +7,16 @@ import { Connection } from '../../src'
const API_PATH = 'http://localhost:9984/api/v1/' const API_PATH = 'http://localhost:9984/api/v1/'
const conn = new Connection(API_PATH) const conn = new Connection(API_PATH)
test('payload thrown at incorrect API_PATH', t => {
const path = 'http://localhost:9984/api/wrong/'
const conn = new Connection(path)
const target = {
message: 'HTTP Error: Requested page not reachable',
status: '404 NOT FOUND',
requestURI: 'http://localhost:9984/api/wrong/transactionId'
}
t.deepEqual(target, conn.getTransaction("transactionId"))
})
test('generate API URLS', t => { test('generate API URLS', t => {
const endpoints = { const endpoints = {