1
0
mirror of https://git.cloudron.io/cloudron/freshrss-app synced 2025-09-16 10:19:15 +00:00

Compare commits

...

4 Commits

Author SHA1 Message Date
Girish Ramakrishnan
c89fca80bc Version 1.1.2 2018-09-09 18:46:27 -07:00
Girish Ramakrishnan
3594901aee Fix tests 2018-09-09 18:45:57 -07:00
Girish Ramakrishnan
5bb5fae5c8 fix promise use 2018-09-09 18:31:57 -07:00
Girish Ramakrishnan
2bc2cf8292 Update FreshRSS to 1.11.2 2018-09-09 18:09:54 -07:00
5 changed files with 70 additions and 57 deletions

View File

@@ -50,3 +50,6 @@
[1.1.1]
* Update FreshRSS to to 1.11.1
[1.1.2]
* Update FreshRSS to 1.11.2

View File

@@ -5,7 +5,7 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "RSS feed reader",
"version": "1.1.1",
"version": "1.1.2",
"healthCheckPath": "/",
"httpPort": 8000,
"addons": {

View File

@@ -1,4 +1,4 @@
This app packages FreshRSS <upstream>1.11.1</upstream>.
This app packages FreshRSS <upstream>1.11.2</upstream>.
FreshRSS is a self-hosted RSS feed aggregator such as Leed or Kriss Feed.

View File

@@ -7,7 +7,7 @@ RUN apt-get update \
RUN mkdir -p /app/code
WORKDIR /app/code
RUN curl -L https://github.com/FreshRSS/FreshRSS/archive/1.11.1.tar.gz | tar -zxvf - --strip-components=1
RUN curl -L https://github.com/FreshRSS/FreshRSS/archive/1.11.2.tar.gz | tar -zxvf - --strip-components=1
RUN mv data data-orig && ln -s /app/data data

View File

@@ -45,79 +45,83 @@ describe('Application life cycle test', function () {
var TEST_TIMEOUT = 10000;
var app;
function exists(selector, callback) {
return browser.wait(until.elementLocated(selector), TEST_TIMEOUT).then(function () {
callback();
});
function exists(selector) {
return browser.wait(until.elementLocated(selector), TEST_TIMEOUT);
}
function visible(selector, callback) {
exists(selector, function () {
browser.wait(until.elementIsVisible(browser.findElement(selector)), TEST_TIMEOUT).then(function () {
callback();
});
return exists(selector).then(function () {
return browser.wait(until.elementIsVisible(browser.findElement(selector)), TEST_TIMEOUT);
});
}
function login(callback) {
browser.manage().deleteAllCookies();
browser.get('https://' + app.fqdn);
visible(by.id('loginButton'), function () {
browser.findElement(by.id('username')).sendKeys(username);
browser.findElement(by.id('passwordPlain')).sendKeys(password);
browser.findElement(by.id('loginButton')).click();
browser.wait(until.elementLocated(by.id('dropdown-configure')), TEST_TIMEOUT).then(function () { callback(); });
browser.manage().deleteAllCookies().then(function () {
return browser.get('https://' + app.fqdn);
}).then(function () {
return visible(by.id('loginButton'));
}).then(function () {
return browser.findElement(by.id('username')).sendKeys(username);
}).then(function () {
return browser.findElement(by.id('passwordPlain')).sendKeys(password);
}).then(function () {
return browser.findElement(by.id('loginButton')).click();
}).then(function () {
return browser.wait(until.elementLocated(by.id('dropdown-configure')), TEST_TIMEOUT);
}).then(function () {
callback();
});
}
function logout(callback) {
var logout_btn = by.xpath('//ul[@class="dropdown-menu"]/li/a[@class="signout"]');
browser.get('https://' + app.fqdn);
visible(by.id('stream'), function () {
browser.findElement(by.className('dropdown-toggle')).click();
visible(logout_btn, function () {
browser.findElement(logout_btn).click();
browser.wait(until.elementLocated(by.id('loginButton')), TEST_TIMEOUT).then(function () { callback(); });
});
browser.get('https://' + app.fqdn).then(function () {
return visible(by.id('stream'));
}).then(function () {
return browser.findElement(by.className('dropdown-toggle')).click();
}).then(function () {
return visible(logout_btn);
}).then(function () {
return browser.findElement(logout_btn).click();
}).then(function () {
return browser.wait(until.elementLocated(by.id('loginButton')), TEST_TIMEOUT);
}).then(function () {
callback();
});
}
function addSubscription(callback) {
var url = "https://cloudron.io/blog/rss.xml";
browser.get('https://' + app.fqdn);
visible(by.id('stream'), function () {
browser.findElement(by.xpath('//a[@href=".?c=subscription"]')).click();
visible(by.id('add_rss'), function () {
browser.findElement(by.xpath('//input[@name="url_rss"]')).sendKeys(url);
browser.findElement(by.xpath('//form[@id="add_rss"]/div/button[@type="submit"]')).click();
visible(by.xpath('//div[@id="notification" and @class="notification good"]'), function() { callback(); });
});
browser.get(`https://${app.fqdn}/p/i/?c=subscription`).then(function () {
return visible(by.xpath('//input[@name="url_rss"]'));
}).then(function () {
return browser.findElement(by.xpath('//input[@name="url_rss"]')).sendKeys(url);
}).then(function () {
return browser.findElement(by.xpath('//form[@id="add_rss"]/div/button[@type="submit"]')).click();
}).then(function () {
return visible(by.xpath('//div[@id="notification" and @class="notification good"]'));
}).then(function () {
callback();
});
}
function addUser(callback) {
var test_username = 'test';
var manage_users_btn = by.xpath('//a[@href=".?c=user&a=manage"]');
browser.get('https://' + app.fqdn);
visible(by.id('stream'), function () {
browser.findElement(by.className('dropdown-toggle')).click();
visible(manage_users_btn, function () {
browser.findElement(manage_users_btn).click();
visible(by.id('new_user_name'), function () {
browser.findElement(by.id('new_user_name')).sendKeys(test_username);
browser.findElement(by.id('new_user_passwordPlain')).sendKeys(password);
browser.findElement(by.xpath('//form[@action=".?c=user&a=create"]/div/div/button[@type="submit"]')).click();
visible(by.xpath('//div[@id="notification" and @class="notification good"]'), function() { callback(); });
});
});
browser.get(`https://${app.fqdn}/p/i/?c=user&a=manage`).then(function () {
return visible(by.id('new_user_name'));
}).then(function () {
return browser.findElement(by.id('new_user_name')).sendKeys(test_username);
}).then(function () {
return browser.findElement(by.id('new_user_passwordPlain')).sendKeys(password);
}).then(function () {
return browser.findElement(by.xpath('//button[text()="Create"]')).click();
}).then(function () {
return visible(by.xpath('//div[@id="notification" and @class="notification good"]'));
}).then(function () {
callback();
});
}
@@ -125,13 +129,17 @@ describe('Application life cycle test', function () {
browser.get('https://' + app.fqdn + '/p/i/?c=auth').then(function () {
return browser.findElement(by.id('api_enabled')).click();
}).then(function () {
return browser.findElement(by.xpath('//form[@action=".?c=auth"]')).submit();
}).then(callback);
return browser.findElement(by.xpath('//button[text()="Submit"]')).submit();
}).then(function () {
callback();
});
}
function checkApiConfiguration(callback) {
browser.get('https://' + app.fqdn + '/p/api/greader.php/check%2Fcompatibility').then(function () {
exists(by.xpath('//pre[text()="PASS"]'), callback);
return exists(by.xpath('//pre[text()="PASS"]'));
}).then(function () {
callback();
});
}
@@ -142,9 +150,11 @@ describe('Application life cycle test', function () {
}
function subscriptionExists(callback) {
browser.get('https://' + app.fqdn + '/p/i/?get=c_1');
visible(by.xpath('//a[text()="Cloudron.io"]'), callback);
browser.get('https://' + app.fqdn + '/p/i/?get=c_1').then(function () {
return visible(by.xpath('//a[text()="Cloudron.io"]'));
}).then(function () {
callback();
});
}
function getStaticExtensionFile(callback) {