1
0
mirror of https://git.cloudron.io/cloudron/gitea-app synced 2025-09-24 22:17:36 +00:00

Compare commits

...

10 Commits

Author SHA1 Message Date
Girish Ramakrishnan
1b053028a0 Version 1.15.4 2020-04-01 11:31:25 -07:00
Girish Ramakrishnan
5e7a1b2a37 Update gitea to 1.11.4 2020-04-01 11:19:05 -07:00
Girish Ramakrishnan
cc63133f85 Version 1.15.3 2020-03-11 10:38:17 -07:00
Girish Ramakrishnan
08cbfbb9d4 Update Gitea to 1.11.3 2020-03-11 10:06:14 -07:00
Girish Ramakrishnan
9944104273 Version 1.15.2 2020-03-08 18:59:42 -07:00
Girish Ramakrishnan
076dd3946b Fix tests 2020-03-08 18:59:04 -07:00
Girish Ramakrishnan
2885c388e8 Update Gitea to 1.11.2 2020-03-08 17:18:15 -07:00
Johannes Zellner
8693f77352 Bump version for 1.11.1 2020-02-18 13:19:18 +01:00
Johannes Zellner
5a0d2ea12e Ensure we can submit the test file page 2020-02-10 17:04:16 +01:00
Johannes Zellner
3fbe8140a7 Bump version for 1.11.0 2020-02-10 15:24:14 +01:00
7 changed files with 452 additions and 529 deletions

View File

@@ -458,3 +458,28 @@
* Send tag create and push webhook when release created on UI (#8671) (#9702)
* Branches not at ref commit ID should not be listed as Merged (#9614) (#9639)
[1.15.0]
* Update Gitea to 1.11.0
[1.15.1]
* Update Gitea to 1.11.1
* Repo name added to automatically generated commit message when merging (#9997) (#10285)
* Fix Workerpool deadlock (#10283) (#10284)
* Divide GetIssueStats query in smaller chunks (#10176) (#10282)
* Fix reply on code review (#10257)
* Stop hanging issue indexer initialisation from preventing shutdown (#10243) (#10249)
* Fix filter label emoji width (#10241) (#10244)
* Fix issue sidebar menus having an infinite height (#10239) (#10240)
* Fix commit between two commits calculation if there is only last commit (#10225) (#10226)
* Only check for conflicts/merging if the PR has not been merged in the interim (#10132) (#10206)
* Blacklist manifest.json & milestones user (#10292) (#10293)
[1.15.2]
* Update Gitea to 1.11.2
[1.15.3]
* Update Gitea to 1.11.3
[1.15.4]
* Update Gitea to 1.11.4

View File

@@ -4,7 +4,7 @@
"author": "Gitea developers",
"description": "file://DESCRIPTION.md",
"tagline": "A painless self-hosted Git Service",
"version": "1.14.3",
"version": "1.15.4",
"healthCheckPath": "/healthcheck",
"httpPort": 3000,
"addons": {

View File

@@ -1,4 +1,4 @@
This app packages Gitea <upstream>1.10.3</upstream>
This app packages Gitea <upstream>1.11.4</upstream>
Gitea is a painless self-hosted Git service. It is similar to GitHub, Bitbucket or Gitlab.

View File

@@ -1,6 +1,6 @@
FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617
ARG VERSION=1.10.3
ARG VERSION=1.11.4
RUN apt-get update && \
apt-get install -y openssh-server git && \

912
test/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -9,11 +9,12 @@
"author": "",
"license": "ISC",
"dependencies": {
"selenium-webdriver": "^3.6.0",
"chromedriver": "^76.0.1",
"chromedriver": "^80.0.1",
"expect.js": "^0.3.1",
"mocha": "^6.2.2",
"rimraf": "^3.0.0",
"superagent": "^5.1.0"
"mocha": "^7.1.1",
"rimraf": "^3.0.2",
"selenium-server-standalone-jar": "^3.141.59",
"selenium-webdriver": "^3.6.0",
"superagent": "^5.2.2"
}
}

View File

@@ -9,6 +9,8 @@
'use strict';
require('chromedriver');
var execSync = require('child_process').execSync,
expect = require('expect.js'),
fs = require('fs'),
@@ -31,10 +33,10 @@ describe('Application life cycle test', function () {
var LOCATION = 'test';
var SSH_PORT = 29420;
var browser;
var app;
var token;
var server, browser = new Builder().forBrowser('chrome').build();
var repodir = '/tmp/testrepo';
var reponame = 'testrepo';
@@ -43,7 +45,10 @@ describe('Application life cycle test', function () {
var email = process.env.EMAIL;
before(function () {
browser = new Builder().forBrowser('chrome').setChromeOptions(new Options().windowSize({ width: 1280, height: 1024 })).build();
var seleniumJar= require('selenium-server-standalone-jar');
var SeleniumServer = require('selenium-webdriver/remote').SeleniumServer;
server = new SeleniumServer(seleniumJar.path, { port: 4444 });
server.start();
});
after(function (done) {
@@ -119,6 +124,10 @@ return done();
return browser.executeScript('arguments[0].CodeMirror.setValue("' + text + '");', cm);
}).then(function () {
return browser.findElement(By.xpath('//input[@name="commit_summary"]')).sendKeys('Dummy edit');
}).then(function () {
// explicitly make the button clickable since CodeMirror.setValue() does not update the form state correctly
var button = browser.findElement(By.xpath('//button[contains(text(), "Commit Changes")]'));
return browser.executeScript('arguments[0].removeAttribute("disabled")', button);
}).then(function () {
return browser.findElement(By.xpath('//button[contains(text(), "Commit Changes")]')).click();
}).then(function () {
@@ -147,8 +156,14 @@ return done();
}
function logout(done) {
browser.get('https://' + app.fqdn + '/user/logout').then(function () {
return waitForUrl('https://' + app.fqdn + '/explore/repos');
browser.get('https://' + app.fqdn).then(function () {
return browser.findElement(By.xpath('//img[contains(@class, "avatar")]')).click();
}).then(function () {
browser.sleep(2000);
}).then(function () {
return browser.findElement(By.xpath('//a[@data-url="/user/logout"]')).click();
}).then(function () {
browser.sleep(2000);
}).then(function () {
done();
});
@@ -304,9 +319,7 @@ return done();
});
});
it('install app', function () {
execSync(`cloudron install --location ${LOCATION} -p SSH_PORT=${SSH_PORT}`, EXEC_ARGS);
});
it('install app', function () { execSync(`cloudron install --location ${LOCATION} -p SSH_PORT=${SSH_PORT}`, EXEC_ARGS); });
it('can get app information', getAppInfo);
it('can get the main page', function (done) {