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

Compare commits

..

21 Commits

Author SHA1 Message Date
Package Updates
b977f0cfe1 Update package version to 1.22.0 2024-12-09 10:02:20 +00:00
Vladimir D
94f42678bd checklist added to CloudronManifest 2024-12-09 10:46:47 +01:00
Johannes Zellner
4a9ce49f7e Revert "Downgrade for ci test"
This reverts commit 9eb5c48ec8.
2024-11-09 17:11:55 +01:00
Johannes Zellner
9eb5c48ec8 Downgrade for ci test 2024-11-09 10:46:33 +01:00
Johannes Zellner
81ac195aa3 Prepare for ci 2024-11-09 10:46:04 +01:00
Girish Ramakrishnan
6b58760334 Update renovate.json5 2024-11-04 17:10:00 +00:00
Girish Ramakrishnan
441807c5ec Add renovate.json5 2024-11-04 17:02:56 +00:00
Johannes Zellner
ea99b7c4ba Bump version 2024-09-06 11:48:55 +02:00
Johannes Zellner
f236000d0d Update test deps 2024-09-06 11:35:44 +02:00
Johannes Zellner
00b67c9e3f Update to 1.24.3 2024-09-06 11:35:38 +02:00
Girish Ramakrishnan
eea79146f9 Version 1.21.2 2024-08-23 18:42:26 +02:00
Girish Ramakrishnan
30c116edad Update test packages 2024-08-23 18:25:28 +02:00
Girish Ramakrishnan
7f9c1f91eb Update FreshRSS to 1.24.2 2024-08-23 18:12:04 +02:00
Johannes Zellner
48ca54d300 Bump version 2024-06-05 20:30:14 +02:00
Johannes Zellner
c70b70d6b0 Fixup tests 2024-06-05 20:29:29 +02:00
Johannes Zellner
7c098a3236 Update test deps 2024-06-05 19:49:28 +02:00
Johannes Zellner
3338db16f0 Update to 1.24.1 2024-06-05 19:49:17 +02:00
Girish Ramakrishnan
2c8ed386ca Version 1.21.0 2024-05-23 18:12:46 +02:00
Girish Ramakrishnan
81bd749001 Fix test name 2024-05-23 18:10:22 +02:00
Girish Ramakrishnan
4f96317a75 Update test packages 2024-05-23 17:57:47 +02:00
Girish Ramakrishnan
f5dc0cef24 Update FreshRSS to 1.24.0 2024-05-23 17:56:16 +02:00
8 changed files with 1202 additions and 470 deletions

View File

@@ -302,3 +302,45 @@
* Fix crash regression when enabling extensions defined by old FreshRSS installations #5979
* Fix crash regression during export when using MySQL #5988
* More robust assignment of categories to feeds #5986
[1.21.0]
* Update FreshRSS to 1.24.0
* [Full Changelog](https://github.com/FreshRSS/FreshRSS/releases/tag/1.24.0)
* New shareable user query mechanism to share lists of articles by HTML, RSS, OPML
* New CLI for database backup & restore
* New JSON scraping mode to consume JSON data and JSON Feeds
* New support for HTTP POST
* New option to automatically add labels to incoming articles
* New button to download a feed configuration as OPML
[1.21.1]
* Update FreshRSS to 1.24.1
* [Full Changelog](https://github.com/FreshRSS/FreshRSS/releases/tag/1.24.1)
* New button to export OMPL of a category
* Many bug fixes
[1.21.2]
* Update FreshRSS to 1.24.2
* [Full Changelog](https://github.com/FreshRSS/FreshRSS/releases/tag/1.24.2)
* New global option to automatically add articles to favourites
* New option to share articles from the article title line
* Add core extensions, shipped by default: UserCSS and UserJS
* Security: Force log out of users when they are disabled
* Last version supporting PHP 7.4 and initial support for PHP 8.4+
* Many bug and regression fixes
[1.21.3]
* Update FreshRSS to 1.24.3
* [Full Changelog](https://github.com/FreshRSS/FreshRSS/releases/tag/1.24.3)
* Fix mark-as-read from user query #6738
* Fix regression for shortcut to move between categories #6741
* Fix feed title option #6771
* Fix XPath for HTML documents with broken root (used by CSS selectors to fetch full content) #6774
* Fix UI regression in Mapco/Ansum themes #6740
* Fix minor style bug with some themes #6746
* Fix export of OPML information for date format of JSON and HTML+XPath feeds #6779
* OpenID Connect better definition of session parameters #6730
[1.22.0]
* checklist added to CloudronManifest

View File

@@ -5,14 +5,16 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG.md",
"tagline": "RSS feed reader",
"version": "1.20.1",
"upstreamVersion": "1.23.1",
"version": "1.22.0",
"upstreamVersion": "1.24.3",
"healthCheckPath": "/",
"httpPort": 8000,
"addons": {
"localstorage": {},
"mysql": {},
"oidc": { "loginRedirectUri": "/i/oidc/" },
"oidc": {
"loginRedirectUri": "/i/oidc/"
},
"scheduler": {
"update_feeds": {
"schedule": "*/1 * * * *",
@@ -20,16 +22,34 @@
}
}
},
"checklist": {
"change-default-password": {
"sso": false,
"message": "Change the default admin password"
},
"create-admin": {
"sso": true,
"message": "On first visit, sign in using the built-in Cloudron authentication and then make the user administrator by running: `php cli/reconfigure.php --default_user YOUR_USERNAME`"
}
},
"manifestVersion": 2,
"website": "http://www.freshrss.org",
"contactEmail": "support@cloudron.io",
"icon": "logo.png",
"tags": [ "rss", "atom", "greader", "reader", "news", "feeds", "feedly" ],
"tags": [
"rss",
"atom",
"greader",
"reader",
"news",
"feeds",
"feedly"
],
"mediaLinks": [
"https://screenshots.cloudron.io/org.freshrss.cloudronapp/1.png"
],
"postInstallMessage": "file://POSTINSTALL.md",
"minBoxVersion": "7.5.1",
"minBoxVersion": "8.1.0",
"forumUrl": "https://forum.cloudron.io/category/27/freshrss",
"documentationUrl": "https://cloudron.io/documentation/apps/freshrss/",
"optionalSso": true

View File

@@ -5,8 +5,10 @@ RUN apt-get update && apt-get install --no-install-recommends -y libapache2-mod-
RUN mkdir -p /app/code
WORKDIR /app/code
ARG VERSION=1.23.1
RUN curl -L https://github.com/FreshRSS/FreshRSS/archive/${VERSION}.tar.gz | tar -zxvf - --strip-components=1 && \
# renovate: datasource=github-releases depName=FreshRSS/FreshRSS versioning=semver
ARG FRESHRSS_VERSION=1.24.3
RUN curl -L https://github.com/FreshRSS/FreshRSS/archive/${FRESHRSS_VERSION}.tar.gz | tar -zxvf - --strip-components=1 && \
mv data data-orig && ln -s /app/data data
# official extensions (https://github.com/FreshRSS/Extensions/commits/master)

View File

@@ -1,16 +1,7 @@
<sso>
On first visit, sign in using the built-in Cloudron authentication and then make the user administrator
by running:
```
php cli/reconfigure.php --default_user YOUR_USERNAME
```
</sso>
<nosso>
This app is pre-setup with an admin account. The initial credentials are:
**Username**: admin<br/>
**Password**: changeme<br/>
Please change the admin password immediately.
</nosso>

4
renovate.json5 Normal file
View File

@@ -0,0 +1,4 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>devops/renovator//default.renovate.json5"]
}

1525
test/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -9,10 +9,10 @@
"author": "",
"license": "ISC",
"dependencies": {
"chromedriver": "^120.0.1",
"chromedriver": "^128.0.1",
"expect.js": "^0.3.1",
"mocha": "^10.2.0",
"selenium-webdriver": "^4.16.0",
"superagent": "^8.1.2"
"mocha": "^10.7.3",
"selenium-webdriver": "^4.24.0",
"superagent": "^10.1.0"
}
}

View File

@@ -1,11 +1,6 @@
#!/usr/bin/env node
/* jshint esversion: 8 */
/* global describe */
/* global before */
/* global after */
/* global it */
/* global xit */
/* global it, xit, describe, before, after, afterEach */
'use strict';
@@ -13,6 +8,7 @@ require('chromedriver');
const execSync = require('child_process').execSync,
expect = require('expect.js'),
fs = require('fs'),
path = require('path'),
superagent = require('superagent'),
{ Builder, By, Key, until } = require('selenium-webdriver'),
@@ -28,7 +24,7 @@ if (!process.env.USERNAME || !process.env.PASSWORD) {
describe('Application life cycle test', function () {
this.timeout(0);
const LOCATION = 'test';
const LOCATION = process.env.LOCATION || 'test';
const TEST_TIMEOUT = parseInt(process.env.TIMEOUT, 10) || 10000;
const EXEC_ARGS = { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' };
@@ -39,16 +35,27 @@ describe('Application life cycle test', function () {
let athenticated_by_oidc = false;
before(function () {
const options = new Options().windowSize({ width: 1280, height: 1024 });
if (process.env.HEADLESS) options.addArguments('headless');
browser = new Builder().forBrowser('chrome').setChromeOptions(options).build();
const chromeOptions = new Options().windowSize({ width: 1280, height: 1024 });
if (process.env.CI) chromeOptions.addArguments('no-sandbox', 'disable-dev-shm-usage', 'headless');
browser = new Builder().forBrowser('chrome').setChromeOptions(chromeOptions).build();
if (!fs.existsSync('./screenshots')) fs.mkdirSync('./screenshots');
});
after(function () {
browser.quit();
});
afterEach(async function () {
if (!process.env.CI || !app) return;
const currentUrl = await browser.getCurrentUrl();
if (!currentUrl.includes(app.domain)) return;
expect(this.currentTest.title).to.be.a('string');
const screenshotData = await browser.takeScreenshot();
fs.writeFileSync(`./screenshots/${new Date().getTime()}-${this.currentTest.title.replaceAll(' ', '_')}.png`, screenshotData, 'base64');
});
function getAppInfo() {
var inspect = JSON.parse(execSync('cloudron inspect'));
app = inspect.apps.filter(function (a) { return a.location.indexOf(LOCATION) === 0; })[0];
@@ -77,15 +84,12 @@ describe('Application life cycle test', function () {
async function loginOIDC(username, password) {
browser.manage().deleteAllCookies();
await browser.get(`https://${app.fqdn}/i/`);
await browser.sleep(6000);
if (!athenticated_by_oidc) {
await waitForElement(By.xpath('//input[@name="username"]'));
await browser.findElement(By.xpath('//input[@name="username"]')).sendKeys(username);
await browser.findElement(By.xpath('//input[@name="password"]')).sendKeys(password);
await browser.sleep(2000);
await browser.findElement(By.xpath('//button[@type="submit" and contains(text(), "Sign in")]')).click();
await browser.sleep(2000);
await waitForElement(By.id('inputUsername'));
await browser.findElement(By.id('inputUsername')).sendKeys(username);
await browser.findElement(By.id('inputPassword')).sendKeys(password);
await browser.findElement(By.id('loginSubmitButton')).click();
athenticated_by_oidc = true;
}
@@ -173,7 +177,7 @@ describe('Application life cycle test', function () {
it('can get app information', getAppInfo);
it('can login OIDC', loginOIDC.bind(null, USERNAME, PASSWORD));
it('can make user Administrator', function () { execSync(`cloudron exec --app ${app.id} -- bash -c "php cli/reconfigure.php --default_user ${USERNAME}"`); });
it('can make user Administrator', function () { execSync(`cloudron exec --app ${app.id} -- bash -c "php cli/reconfigure.php --default-user ${USERNAME}"`); });
it('can subscribe', addSubscription);
it('can enable API', enableApi);
it('can check configuration', checkApiConfiguration);
@@ -211,13 +215,12 @@ describe('Application life cycle test', function () {
it('uninstall app', function () { execSync('cloudron uninstall --app ' + app.id, EXEC_ARGS); });
// test update
it('can install app', function () { execSync('cloudron install --appstore-id org.freshrss.cloudronapp --location ' + LOCATION, EXEC_ARGS); });
it('can install app for update', function () { execSync('cloudron install --appstore-id org.freshrss.cloudronapp --location ' + LOCATION, EXEC_ARGS); });
it('can get app information', getAppInfo);
it('can login OIDC', loginOIDC.bind(null, USERNAME, PASSWORD));
it('can make user Administrator', function () { execSync(`cloudron exec --app ${app.id} -- bash -c "php cli/reconfigure.php --default_user ${USERNAME}"`); });
it('can make user Administrator', function () { execSync(`cloudron exec --app ${app.id} -- bash -c "php cli/reconfigure.php --default-user ${USERNAME}"`); });
it('can subscribe', addSubscription);
it('can add users', addUser.bind(null, 'test', admin_password));
it('can update', function () {
execSync('cloudron update --app ' + app.id, EXEC_ARGS);
@@ -226,6 +229,7 @@ describe('Application life cycle test', function () {
expect(app).to.be.an('object');
});
it('can add users', addUser.bind(null, 'test', admin_password));
it('subscription exists', subscriptionExists);
it('can get static extension file', getStaticExtensionFile);