final api test written for now

This commit is contained in:
John McLear 2014-11-26 21:44:50 +00:00
parent 198e211671
commit e9115880b3
1 changed files with 55 additions and 36 deletions

View File

@ -39,7 +39,6 @@ describe('API Versioning', function(){
-> createAuthor([name]) -- should return an authorID -> createAuthor([name]) -- should return an authorID
-> createAuthorIfNotExistsFor(authorMapper [, name]) -- should return an authorID -> createAuthorIfNotExistsFor(authorMapper [, name]) -- should return an authorID
-> getAuthorName(authorID) -- should return a name IE "john" -> getAuthorName(authorID) -- should return a name IE "john"
-> listPadsOfAuthor(authorID)
-> createSession(groupID, authorID, validUntil) -> createSession(groupID, authorID, validUntil)
-> getSessionInfo(sessionID) -> getSessionInfo(sessionID)
@ -56,6 +55,8 @@ describe('API Versioning', function(){
-> isPasswordProtected(padID) -- should be false -> isPasswordProtected(padID) -- should be false
-> setPassword(padID, password) -> setPassword(padID, password)
-> isPasswordProtected(padID) -- should be true -> isPasswordProtected(padID) -- should be true
-> listPadsOfAuthor(authorID)
*/ */
describe('createGroup', function(){ describe('createGroup', function(){
@ -119,7 +120,7 @@ describe('createAuthor', function(){
it('Creates an author with a name set', function(done) { it('Creates an author with a name set', function(done) {
api.get(endPoint('createAuthor')) api.get(endPoint('createAuthor'))
.expect(function(res){ .expect(function(res){
if(res.body.code !== 0 || !res.body.data.authorID) throw new Error("Sessions show as existing for this group"); if(res.body.code !== 0 || !res.body.data.authorID) throw new Error("Unable to create author");
}) })
.expect('Content-Type', /json/) .expect('Content-Type', /json/)
.expect(200, done) .expect(200, done)
@ -220,11 +221,14 @@ describe('getSessionInfo', function(){
}); });
}) })
// GROUP PAD MANAGEMENT
///////////////////////////////////////
///////////////////////////////////////
describe('listPads', function(){ describe('listPads', function(){
it('Lists Pads of a Group', function(done) { it('Lists Pads of a Group', function(done) {
api.get(endPoint('listPads')+"&groupID="+groupID) api.get(endPoint('listPads')+"&groupID="+groupID)
.expect(function(res){ .expect(function(res){
console.log(res.body.data.padIDs);
if(res.body.code !== 0 || res.body.data.padIDs.length !== 0) throw new Error("Group already had pads for some reason"+res.body.data.padIDs); if(res.body.code !== 0 || res.body.data.padIDs.length !== 0) throw new Error("Group already had pads for some reason"+res.body.data.padIDs);
}) })
.expect('Content-Type', /json/) .expect('Content-Type', /json/)
@ -255,6 +259,10 @@ describe('listPads', function(){
}); });
}) })
// PAD SECURITY /-_-\
///////////////////////////////////////
///////////////////////////////////////
describe('getPublicStatus', function(){ describe('getPublicStatus', function(){
it('Gets the public status of a pad', function(done) { it('Gets the public status of a pad', function(done) {
api.get(endPoint('getPublicStatus')+"&padID="+padID) api.get(endPoint('getPublicStatus')+"&padID="+padID)
@ -288,43 +296,54 @@ describe('getPublicStatus', function(){
}); });
}) })
describe('isPasswordProtected', function(){
it('Gets the public status of a pad', function(done) {
api.get(endPoint('isPasswordProtected')+"&padID="+padID)
.expect(function(res){
if(res.body.code !== 0 || res.body.data.isPasswordProtected) throw new Error("Pad is password protected by default");
})
.expect('Content-Type', /json/)
.expect(200, done)
});
})
/* Endpoints Still to interact with.. describe('setPassword', function(){
-> isPasswordProtected(padID) -- should be false it('Gets the public status of a pad', function(done) {
-> setPassword(padID, password) api.get(endPoint('setPassword')+"&padID="+padID+"&password=test")
-> isPasswordProtected(padID) -- should be true .expect(function(res){
-> listPadsOfAuthor(authorID) if(res.body.code !== 0) throw new Error("Unabe to set password");
*/ })
.expect('Content-Type', /json/)
.expect(200, done)
});
})
describe('isPasswordProtected', function(){
it('Gets the public status of a pad', function(done) {
api.get(endPoint('isPasswordProtected')+"&padID="+padID)
.expect(function(res){
if(res.body.code !== 0 || !res.body.data.isPasswordProtected) throw new Error("Pad password protection has not applied");
})
.expect('Content-Type', /json/)
.expect(200, done)
});
})
// NOT SURE HOW TO POPULAT THIS /-_-\
///////////////////////////////////////
///////////////////////////////////////
describe('listPadsOfAuthor', function(){
it('Gets the Pads of an Author', function(done) {
api.get(endPoint('listPadsOfAuthor')+"&authorID="+authorID)
.expect(function(res){
if(res.body.code !== 0 || res.body.data.padIDs.length !== 0) throw new Error("Pad password protection has not applied");
})
.expect('Content-Type', /json/)
.expect(200, done)
});
})