cloudflare/test/test.ts

46 lines
1.5 KiB
TypeScript
Raw Normal View History

2016-05-15 17:51:48 +00:00
/// <reference path="../ts/typings/main.d.ts" />
import cflare = require("../dist/index");
2016-05-16 01:29:29 +00:00
let should = require("should");
2016-05-15 17:51:48 +00:00
let nogit = require("../nogit/nogit.json");
let testCflareAccount = new cflare.CflareAccount();
testCflareAccount.auth({
email: nogit.cfemail,
key: nogit.cfkey
});
2016-05-16 01:29:29 +00:00
describe("cflare",function(){
describe(".CflareAccount",function(){
describe(".listZones()",function(){
it("should display an account",function(done){
this.timeout(10000);
testCflareAccount.listZones()
.then((responseArg)=>{
console.log(responseArg);
done();
})
});
});
describe(".getZoneId(domainName)",function(){
it("should get an Cloudflare Id for a domain string",function(done){
this.timeout(5000)
testCflareAccount.getZoneId("push.rocks")
.then((responseArg)=>{
console.log(responseArg);
done();
});
});
});
describe(".listRecords(domainName)",function(){
it("should list all records for a specific Domain Name",function(done){
this.timeout(5000);
testCflareAccount.listRecords("push.rocks")
.then((responseArg) => {
console.log(responseArg);
done();
});
});
})
})
});