downloadFile test

experimental
Yago 10 years ago
parent c5f97ce524
commit 610a989e69
  1. 19
      test/index.js

@ -470,27 +470,20 @@ describe('Telegram', function () {
describe('#downloadFile', function () {
var fileId;
var downloadPath = __dirname;
// To get a file we have to send some file first
it('should send a photo from file', function (done) {
it('should download a file', function (done) {
var bot = new Telegram(TOKEN);
var photo = __dirname + '/bot.gif';
// Send a file to get the ID
bot.sendPhoto(USERID, photo).then(function (resp) {
resp.should.be.an.instanceOf(Object);
fileId = resp.photo[0].file_id;
done();
});
});
var fileId = resp.photo[0].file_id;
it('should download a file', function (done) {
var bot = new Telegram(TOKEN);
bot.downloadFile(fileId, downloadPath).then(function (filePath) {
bot.downloadFile(fileId, downloadPath)
.then(function (filePath) {
filePath.should.be.an.instanceOf(String);
fs.existsSync(filePath).should.be.true();
fs.unlinkSync(filePath); // Delete file after test
@ -499,6 +492,8 @@ describe('Telegram', function () {
});
});
});
it('should call `onText` callback on match', function (done) {
var bot = new Telegram(TOKEN, {webHook: true});
bot.onText(/\/echo (.+)/, function (msg, match) {

Loading…
Cancel
Save