From 05337261ffb4abfb0fbbb9c775ccad0e28645692 Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Wed, 22 Oct 2014 08:35:44 -0400 Subject: Begin rewrite for new API --- tests/replies/agency.json | 24 ++++++++++++++++++++++++ tests/replies/device.json | 19 +++++++++++++++++++ tests/replies/devices.json | 0 tests/replies/error.json | 4 ++++ 4 files changed, 47 insertions(+) create mode 100644 tests/replies/agency.json create mode 100644 tests/replies/device.json create mode 100644 tests/replies/devices.json create mode 100644 tests/replies/error.json (limited to 'tests/replies') diff --git a/tests/replies/agency.json b/tests/replies/agency.json new file mode 100644 index 0000000..6c1b365 --- /dev/null +++ b/tests/replies/agency.json @@ -0,0 +1,24 @@ +{ + "result": "success", + "message": { + "agency": { + "id": "12345", + "name": "Test Agency", + "address": "123 Main St.", + "city": "City", + "state": "AZ", + "latitude": 40, + "longitude": 70, + "devices": [ + { + "id": 1, + "uri": "https://access.active911.com/interface/open_api/api/devices/1" + }, + { + "id": 2, + "uri": "https://access.active911.com/interface/open_api/api/devices/2" + } + ] + } + } +} diff --git a/tests/replies/device.json b/tests/replies/device.json new file mode 100644 index 0000000..b3dc1ee --- /dev/null +++ b/tests/replies/device.json @@ -0,0 +1,19 @@ +{ + "result": "success", + "message": { + "device": { + "id": 1, + "name": "Test Device", + "latitude": 41, + "longitude": 71, + "position_accuracy": "100", + "position_timestamp": "2014-01-01 00:00:00", + "agencies": [ + { + "id": "12345", + "uri": "https://access.active911.com/interface/open_api/api/" + } + ] + } + } +} diff --git a/tests/replies/devices.json b/tests/replies/devices.json new file mode 100644 index 0000000..e69de29 diff --git a/tests/replies/error.json b/tests/replies/error.json new file mode 100644 index 0000000..c9ccbef --- /dev/null +++ b/tests/replies/error.json @@ -0,0 +1,4 @@ +{ + "result": "error", + "message": "Test Error Message" +} -- cgit v1.2.3