mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[core] Update pr html generator (#2549)
This commit is contained in:
parent
fe43537b45
commit
8e423277e0
31
.github/prtester.py
vendored
31
.github/prtester.py
vendored
@ -1,7 +1,6 @@
|
|||||||
import requests
|
import requests
|
||||||
from bs4 import BeautifulSoup
|
from bs4 import BeautifulSoup
|
||||||
import random
|
from datetime import datetime
|
||||||
import json
|
|
||||||
import os.path
|
import os.path
|
||||||
|
|
||||||
# This script is specifically written to be used in automation for https://github.com/RSS-Bridge/rss-bridge
|
# This script is specifically written to be used in automation for https://github.com/RSS-Bridge/rss-bridge
|
||||||
@ -49,18 +48,36 @@ def testBridges(bridges,status):
|
|||||||
formstring = formstring + '&' + list.get('name') + '=' + list.contents[0].get('value')
|
formstring = formstring + '&' + list.get('name') + '=' + list.contents[0].get('value')
|
||||||
if not errormessages:
|
if not errormessages:
|
||||||
# if all example/default values are present, form the full request string, run the request, replace the static css
|
# if all example/default values are present, form the full request string, run the request, replace the static css
|
||||||
# file with the url of em's public instance and then write it all to file.
|
# file with the url of em's public instance and then upload it to termpad.com, a pastebin-like-site.
|
||||||
r = requests.get(URL + bridgestring + formstring)
|
r = requests.get(URL + bridgestring + formstring)
|
||||||
pagetext = r.text.replace('static/HtmlFormat.css','https://feed.eugenemolotov.ru/static/HtmlFormat.css')
|
pagetext = r.text.replace('static/HtmlFormat.css','https://feed.eugenemolotov.ru/static/HtmlFormat.css')
|
||||||
with open(os.getcwd() + "/results/" + bridgeid + '-' + status + '-context' + str(formid) + '.html', 'w+') as file:
|
pagetext = pagetext.encode("utf_8")
|
||||||
file.write(pagetext)
|
termpad = requests.post(url="https://termpad.com/", data=pagetext)
|
||||||
|
termpadurl = termpad.text
|
||||||
|
termpadurl = termpadurl.replace('termpad.com/','termpad.com/raw/')
|
||||||
|
termpadurl = termpadurl.replace('\n','')
|
||||||
|
with open(os.getcwd() + '/comment.txt', 'a+') as file:
|
||||||
|
file.write("\n")
|
||||||
|
file.write("| [`" + bridgeid + '-' + status + '-context' + str(formid) + "`](" + termpadurl + ") | " + date_time + " |")
|
||||||
else:
|
else:
|
||||||
# if there are errors (which means that a required value has no example or default value), log out which error appeared
|
# if there are errors (which means that a required value has no example or default value), log out which error appeared
|
||||||
with open(os.getcwd() + "/results/" + bridgeid + '-' + status + '-context' + str(formid) + '.html', 'w+') as file:
|
termpad = requests.post(url="https://termpad.com/", data=str(errormessages))
|
||||||
file.write(str(errormessages))
|
termpadurl = termpad.text
|
||||||
|
termpadurl = termpadurl.replace('termpad.com/','termpad.com/raw/')
|
||||||
|
termpadurl = termpadurl.replace('\n','')
|
||||||
|
with open(os.getcwd() + '/comment.txt', 'a+') as file:
|
||||||
|
file.write("\n")
|
||||||
|
file.write("| [`" + bridgeid + '-' + status + '-context' + str(formid) + "`](" + termpadurl + ") | " + date_time + " |")
|
||||||
formid += 1
|
formid += 1
|
||||||
|
|
||||||
gitstatus = ["current", "pr"]
|
gitstatus = ["current", "pr"]
|
||||||
|
now = datetime.now()
|
||||||
|
date_time = now.strftime("%Y-%m-%d, %H:%M:%S")
|
||||||
|
|
||||||
|
with open(os.getcwd() + '/comment.txt', 'w+') as file:
|
||||||
|
file.write(''' ## Pull request artifacts
|
||||||
|
| file | last change |
|
||||||
|
| ---- | ------ |''')
|
||||||
|
|
||||||
for status in gitstatus: # run this twice, once for the current version, once for the PR version
|
for status in gitstatus: # run this twice, once for the current version, once for the PR version
|
||||||
if status == "current":
|
if status == "current":
|
||||||
|
34
.github/workflows/prhtmlgenerator.yml
vendored
34
.github/workflows/prhtmlgenerator.yml
vendored
@ -40,21 +40,27 @@ jobs:
|
|||||||
cd $GITHUB_WORKSPACE
|
cd $GITHUB_WORKSPACE
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
- name: Run bridge tests
|
- name: Run bridge tests
|
||||||
|
id: testrun
|
||||||
run: |
|
run: |
|
||||||
mkdir results;
|
mkdir results;
|
||||||
python prtester.py
|
python prtester.py;
|
||||||
- name: Find result files
|
body="$(cat comment.txt)";
|
||||||
uses: tj-actions/glob@v7.10
|
body="${body//'%'/'%25'}";
|
||||||
id: artifacts
|
body="${body//$'\n'/'%0A'}";
|
||||||
|
body="${body//$'\r'/'%0D'}";
|
||||||
|
echo "::set-output name=body::$body"
|
||||||
|
- name: Find Comment
|
||||||
|
uses: peter-evans/find-comment@v2
|
||||||
|
id: fc
|
||||||
with:
|
with:
|
||||||
files: |
|
issue-number: ${{ github.event.pull_request.number }}
|
||||||
./results/*.html
|
comment-author: 'github-actions[bot]'
|
||||||
- name: Upload results to PR
|
body-includes: Pull request artifacts
|
||||||
uses: yamanq/pull-request-artifacts@v1.3.1
|
- name: Create or update comment
|
||||||
|
uses: peter-evans/create-or-update-comment@v2
|
||||||
with:
|
with:
|
||||||
commit: ${{ github.event.pull_request.head.sha }}
|
comment-id: ${{ steps.fc.outputs.comment-id }}
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
issue-number: ${{ github.event.pull_request.number }}
|
||||||
artifacts-branch: artifacts
|
body: |
|
||||||
artifacts-prefix-url: "https://htmlpreview.github.io/?"
|
${{ steps.testrun.outputs.body }}
|
||||||
artifacts: |
|
edit-mode: replace
|
||||||
${{ steps.artifacts.outputs.paths }}
|
|
Loading…
Reference in New Issue
Block a user