90 lines
2.4 KiB
CoffeeScript
90 lines
2.4 KiB
CoffeeScript
nock = require 'nock'
|
|
expect = require("chai").should()
|
|
|
|
Asjon = require '../asjon-testing.coffee'
|
|
asjon = undefined
|
|
|
|
describe 'modulo github', ->
|
|
before (done) ->
|
|
# Inizializzo robot
|
|
Asjon (assa) ->
|
|
asjon = assa
|
|
after asjon.after
|
|
afterEach asjon.clear
|
|
require('../scripts/github.coffee')(asjon.robot)
|
|
done()
|
|
|
|
it 'dovrebbe rispondere a "mostra le issues"', (done) ->
|
|
questions = [
|
|
"asjon mostrami le issue"
|
|
"asjon mostrami le issues"
|
|
"asjon issues"
|
|
"asjon le issue"
|
|
"asjon issue"
|
|
]
|
|
nock('https://api.github.com')
|
|
.get('/repos/fazo96/asjon/issues?state=open&sort=updated')
|
|
.times(questions.length)
|
|
.reply 200, []
|
|
acc = 0
|
|
asjon.receive (e,l) ->
|
|
acc++
|
|
if acc is questions.length*2 then done()
|
|
questions.map (q) -> asjon.send q
|
|
|
|
it 'dovrebbe rispondere correttamente in caso di 0 issues', (done) ->
|
|
nock('https://api.github.com')
|
|
.get('/repos/fazo96/asjon/issues?state=open&sort=updated')
|
|
.reply 200, []
|
|
acc = 0
|
|
asjon.receive (e,l) ->
|
|
if acc is 0
|
|
l.join().should.equal 'controllo issues...'
|
|
else
|
|
l.join().should.equal '0 issues'
|
|
acc++
|
|
if acc is 2 then done()
|
|
asjon.send 'asjon issues'
|
|
|
|
|
|
issue1 =
|
|
number: 1
|
|
labels: []
|
|
title: 'one'
|
|
user:
|
|
login: 'user'
|
|
issue2 =
|
|
number: 2,
|
|
labels: [{name: 'a'},{name: 'b'}],
|
|
title: 'two',
|
|
user:
|
|
login: 'user'
|
|
|
|
it 'dovrebbe rispondere correttamente in caso di 1 o piĆ¹ issues', (done) ->
|
|
nock('https://api.github.com')
|
|
.get('/repos/fazo96/asjon/issues?state=open&sort=updated')
|
|
.reply 200, [issue1, issue2]
|
|
acc = 0
|
|
asjon.receive (e,l) ->
|
|
if acc is 0
|
|
l.join().should.equal 'controllo issues...'
|
|
else
|
|
a = l.join().split '\n'
|
|
a[0].should.equal '#1 | one | By: user | Tags: nessuno'
|
|
a[1].should.equal '#2 | two | By: user | Tags: a, b'
|
|
acc++
|
|
if acc is 2 then done()
|
|
asjon.send 'asjon issues'
|
|
|
|
it 'dovrebbe linkare correttamente le issues ', (done) ->
|
|
acc = 0
|
|
asjon.receive (e,l) ->
|
|
if acc is 0
|
|
l.join().should.equal 'http://github.com/fazo96/asjon/issues/5'
|
|
else
|
|
l.join().should.equal 'http://github.com/fazo96/asjon/issues/456'
|
|
acc++
|
|
if acc is 2 then done()
|
|
asjon.send 'asjon linkami la issue numero 5'
|
|
asjon.send 'asjon linkami issue 456'
|