| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- import test from 'ava';
- import Hydrawise from '../lib/hydrawise';
- const hydrawise = new Hydrawise('53DC-7E24-07E8-CD7D');
- test('Customer Details', t => {
- return hydrawise.customerdetails().then(data => {
- if (data.error_msg) {
- t.fail(`Error: ${data.error_msg}`);
- }
- t.pass();
- });
- });
- test('Status Schedule', t => {
- return hydrawise.statusschedule().then(data => {
- if (data.error_msg) {
- t.fail(`Error: ${data.error_msg}`);
- }
- t.pass();
- });
- });
- test('Status Schedule All', t => {
- return hydrawise.statusschedule('hydrawise_all').then(data => {
- if (data.error_msg) {
- t.fail(`Error: ${data.error_msg}`);
- }
- t.pass();
- });
- });
- test('Set Controller', t => {
- return hydrawise.setcontroller('11774').then(() => {
- t.pass();
- });
- });
- test('Stop Zones', t => {
- return hydrawise.setzone('stopall').then(data => {
- if (data.message_type === 'error') {
- t.fail(`Error: ${data.message}`);
- }
- t.pass();
- });
- });
- test('Run All Zones', t => {
- return hydrawise.setzone('runall', {period_id: '999', custom: '60'}).then(data => {
- if (data.message_type === 'error') {
- t.fail(`Error: ${data.message}`);
- }
- t.pass();
- });
- });
|