First storage service test
This commit is contained in:
parent
c5ad020de7
commit
c931102d12
4 changed files with 86 additions and 7 deletions
14
.github/workflows/benchmark.yml
vendored
14
.github/workflows/benchmark.yml
vendored
|
@ -38,7 +38,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
node-version: '16.9.1'
|
node-version: '16.9.1'
|
||||||
- name: Install global dependencies
|
- name: Install global dependencies
|
||||||
run: npm install -g yarn@1.22.10 typescript@4.4.2 ts-node@10.2.1
|
run: npm install -g yarn@1.22.10
|
||||||
|
|
||||||
- name: Install xvfb
|
- name: Install xvfb
|
||||||
run: sudo apt-get install xvfb
|
run: sudo apt-get install xvfb
|
||||||
|
@ -78,7 +78,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
rm -rf /tmp/mock
|
rm -rf /tmp/mock
|
||||||
xvfb-run --auto-servernum ts-node Mock-Server/scripts/load-test.ts \
|
xvfb-run --auto-servernum node Mock-Server/scripts/load-test.js \
|
||||||
./node_modules/.bin/electron . | tee benchmark-startup.log || \
|
./node_modules/.bin/electron . | tee benchmark-startup.log || \
|
||||||
(cat /tmp/mock/logs/{app,main}.log && exit 1)
|
(cat /tmp/mock/logs/{app,main}.log && exit 1)
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
|
@ -91,7 +91,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
rm -rf /tmp/mock
|
rm -rf /tmp/mock
|
||||||
xvfb-run --auto-servernum ts-node Mock-Server/scripts/send-test.ts \
|
xvfb-run --auto-servernum node Mock-Server/scripts/send-test.js \
|
||||||
./node_modules/.bin/electron . | tee benchmark-send.log || \
|
./node_modules/.bin/electron . | tee benchmark-send.log || \
|
||||||
(cat /tmp/mock/logs/{app,main}.log && exit 1)
|
(cat /tmp/mock/logs/{app,main}.log && exit 1)
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
|
@ -104,8 +104,8 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
rm -rf /tmp/mock
|
rm -rf /tmp/mock
|
||||||
xvfb-run --auto-servernum ts-node \
|
xvfb-run --auto-servernum node \
|
||||||
Mock-Server/scripts/group-send-test.ts \
|
Mock-Server/scripts/group-send-test.js \
|
||||||
./node_modules/.bin/electron . | tee benchmark-group-send.log || \
|
./node_modules/.bin/electron . | tee benchmark-group-send.log || \
|
||||||
(cat /tmp/mock/logs/{app,main}.log && exit 1)
|
(cat /tmp/mock/logs/{app,main}.log && exit 1)
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
|
@ -118,8 +118,8 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
rm -rf /tmp/mock
|
rm -rf /tmp/mock
|
||||||
xvfb-run --auto-servernum ts-node \
|
xvfb-run --auto-servernum node \
|
||||||
Mock-Server/scripts/convo-open-test.ts \
|
Mock-Server/scripts/convo-open-test.js \
|
||||||
./node_modules/.bin/electron . | tee benchmark-convo-open.log || \
|
./node_modules/.bin/electron . | tee benchmark-convo-open.log || \
|
||||||
(cat /tmp/mock/logs/{app,main}.log && exit 1)
|
(cat /tmp/mock/logs/{app,main}.log && exit 1)
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
|
|
77
.github/workflows/ci.yml
vendored
77
.github/workflows/ci.yml
vendored
|
@ -149,3 +149,80 @@ jobs:
|
||||||
- run: yarn test-release
|
- run: yarn test-release
|
||||||
env:
|
env:
|
||||||
SIGNAL_ENV: production
|
SIGNAL_ENV: production
|
||||||
|
|
||||||
|
storage-service:
|
||||||
|
needs: lint
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.repository == 'signalapp/Signal-Desktop-Private' }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Get system specs
|
||||||
|
run: lsb_release -a
|
||||||
|
- name: Get other system specs
|
||||||
|
run: uname -a
|
||||||
|
|
||||||
|
- name: Configure git to use HTTPS
|
||||||
|
run: git config --global url."https://${{ secrets.AUTOMATED_GITHUB_PAT }}:x-oauth-basic@github.com".insteadOf ssh://git@github.com
|
||||||
|
|
||||||
|
- name: Clone Desktop repo
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Clone Mock-Server repo
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
repository: 'signalapp/Mock-Signal-Server-Private'
|
||||||
|
path: 'Mock-Server'
|
||||||
|
ref: 'gamma'
|
||||||
|
token: ${{ secrets.AUTOMATED_GITHUB_PAT }}
|
||||||
|
|
||||||
|
- name: Setup node.js
|
||||||
|
uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: '16.9.1'
|
||||||
|
- name: Install global dependencies
|
||||||
|
run: npm install -g yarn@1.22.10
|
||||||
|
|
||||||
|
- name: Install xvfb
|
||||||
|
run: sudo apt-get install xvfb
|
||||||
|
|
||||||
|
- name: Cache Desktop node_modules
|
||||||
|
id: cache-desktop-modules
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
path: node_modules
|
||||||
|
key: ${{ runner.os }}-${{ hashFiles('package.json', 'yarn.lock', 'patches/**') }}
|
||||||
|
|
||||||
|
- name: Install Desktop node_modules
|
||||||
|
if: steps.cache-desktop-modules.outputs.cache-hit != 'true'
|
||||||
|
run: yarn install --frozen-lockfile
|
||||||
|
|
||||||
|
- name: Install Mock-Server node_modules
|
||||||
|
run: yarn install --frozen-lockfile
|
||||||
|
working-directory: Mock-Server
|
||||||
|
env:
|
||||||
|
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
|
||||||
|
|
||||||
|
- name: Build typescript
|
||||||
|
run: yarn generate
|
||||||
|
- name: Bundle
|
||||||
|
run: yarn build:webpack
|
||||||
|
|
||||||
|
- name: Copy CI configuration
|
||||||
|
run: |
|
||||||
|
cp -rf ./Mock-Server/config/local-development.json \
|
||||||
|
./config/local-development.json
|
||||||
|
cp -rf ./config/local-development.json ./config/local-production.json
|
||||||
|
|
||||||
|
- name: Setup hosts
|
||||||
|
run: sudo echo "127.0.0.1 mock.signal.org" | sudo tee -a /etc/hosts
|
||||||
|
|
||||||
|
- name: Run storage service tests
|
||||||
|
run: |
|
||||||
|
set -o pipefail
|
||||||
|
rm -rf /tmp/mock
|
||||||
|
xvfb-run --auto-servernum node Mock-Server/scripts/storage-service-test.js \
|
||||||
|
./node_modules/.bin/electron . || \
|
||||||
|
(cat /tmp/mock/logs/{app,main}.log && exit 1)
|
||||||
|
timeout-minutes: 10
|
||||||
|
env:
|
||||||
|
NODE_ENV: production
|
||||||
|
DEBUG: mock:scripts:*
|
||||||
|
|
|
@ -261,6 +261,7 @@ export const ConversationList: React.FC<PropsType> = ({
|
||||||
'id',
|
'id',
|
||||||
'isMe',
|
'isMe',
|
||||||
'isSelected',
|
'isSelected',
|
||||||
|
'isPinned',
|
||||||
'lastMessage',
|
'lastMessage',
|
||||||
'lastUpdated',
|
'lastUpdated',
|
||||||
'markedUnread',
|
'markedUnread',
|
||||||
|
|
|
@ -42,6 +42,7 @@ export type PropsData = Pick<
|
||||||
| 'draftPreview'
|
| 'draftPreview'
|
||||||
| 'id'
|
| 'id'
|
||||||
| 'isMe'
|
| 'isMe'
|
||||||
|
// NOTE: Passed for CI, not used for rendering
|
||||||
| 'isPinned'
|
| 'isPinned'
|
||||||
| 'isSelected'
|
| 'isSelected'
|
||||||
| 'lastMessage'
|
| 'lastMessage'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue