Compare commits
No commits in common. "55b97eaf1fbf2e5261b304e0673c616982a469b4" and "2f26ce7e3187f91ccd66a0faa92043c78ed617dd" have entirely different histories.
55b97eaf1f
...
2f26ce7e31
@ -9,34 +9,7 @@ env:
|
|||||||
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
|
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test-frontend:
|
test:
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container: rust:latest
|
|
||||||
steps:
|
|
||||||
- name: Setup Environment
|
|
||||||
run: |
|
|
||||||
apt-get update -qq && apt-get install -y -qq sshpass musl musl-tools sqlite3 curl gnupg && mkdir -p /etc/apt/keyrings | curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_16.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && apt-get update && apt-get install nodejs -y && apt-get install npm -y
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- name: Run Test DB Script
|
|
||||||
run: ./test_db.sh
|
|
||||||
- name: Build
|
|
||||||
run: |
|
|
||||||
cargo build
|
|
||||||
cd frontend && npm install && npm run build
|
|
||||||
- name: Install dependencies
|
|
||||||
run: cd frontend && npm install
|
|
||||||
- name: Install Playwright Browsers
|
|
||||||
run: cd frontend && npx playwright install --with-deps
|
|
||||||
- name: Run Playwright tests
|
|
||||||
run: cd frontend && npx playwright test --workers 1
|
|
||||||
- uses: actions/upload-artifact@v3
|
|
||||||
if: always()
|
|
||||||
with:
|
|
||||||
name: playwright-report
|
|
||||||
path: frontend/playwright-report/
|
|
||||||
retention-days: 30
|
|
||||||
|
|
||||||
test-backend:
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: rust:latest
|
container: rust:latest
|
||||||
|
|
||||||
@ -62,7 +35,7 @@ jobs:
|
|||||||
deploy-staging:
|
deploy-staging:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: rust:latest
|
container: rust:latest
|
||||||
needs: [test_frontend, test_backend]
|
needs: [test]
|
||||||
if: github.ref == 'refs/heads/staging'
|
if: github.ref == 'refs/heads/staging'
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Environment
|
- name: Setup Environment
|
||||||
@ -122,7 +95,7 @@ jobs:
|
|||||||
deploy-main:
|
deploy-main:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: rust:latest
|
container: rust:latest
|
||||||
needs: [test_frontend, test_backend]
|
needs: [test]
|
||||||
if: github.ref == 'refs/heads/main'
|
if: github.ref == 'refs/heads/main'
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Environment
|
- name: Setup Environment
|
||||||
|
25
README.md
25
README.md
@ -1,22 +1,15 @@
|
|||||||
# Build
|
# Frontend Process
|
||||||
|
´cd frontend´
|
||||||
|
´npm install´
|
||||||
|
´npm run (watch/build)´
|
||||||
|
|
||||||
|
# Notes / Bugfixes
|
||||||
## Frontend
|
## Frontend
|
||||||
1. `cd frontend`
|
- [] support esc to close sidebar
|
||||||
2. `npm install`
|
- [] reload page -> don't throw input away!
|
||||||
3. `npm run (watch/build)`
|
|
||||||
|
|
||||||
# Run
|
|
||||||
|
|
||||||
## Backend
|
## Backend
|
||||||
1. `cargo r`
|
|
||||||
|
|
||||||
# Test
|
|
||||||
|
|
||||||
|
# Nice to have
|
||||||
## Frontend
|
## Frontend
|
||||||
- `npx playwright test --workers 1 --project firefox`
|
- [] my trips for cox
|
||||||
- Nice UI: `--ui`
|
|
||||||
- Generate tests: `npx playwright codegen`
|
|
||||||
|
|
||||||
## Backend (Unit + Integration)
|
|
||||||
`cargo t`
|
|
||||||
|
|
||||||
|
5
frontend/.gitignore
vendored
5
frontend/.gitignore
vendored
@ -1,6 +1 @@
|
|||||||
package-lock.json
|
package-lock.json
|
||||||
node_modules/
|
|
||||||
/test-results/
|
|
||||||
/playwright-report/
|
|
||||||
/blob-report/
|
|
||||||
/playwright/.cache/
|
|
||||||
|
@ -9,9 +9,7 @@
|
|||||||
"preview": "vite preview"
|
"preview": "vite preview"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@playwright/test": "^1.40.1",
|
|
||||||
"@types/d3": "^7.4.1",
|
"@types/d3": "^7.4.1",
|
||||||
"@types/node": "^20.11.4",
|
|
||||||
"autoprefixer": "^10.4.14",
|
"autoprefixer": "^10.4.14",
|
||||||
"postcss": "^8.4.21",
|
"postcss": "^8.4.21",
|
||||||
"sass": "^1.60.0",
|
"sass": "^1.60.0",
|
||||||
|
@ -1,75 +0,0 @@
|
|||||||
import { defineConfig, devices } from '@playwright/test';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Read environment variables from file.
|
|
||||||
* https://github.com/motdotla/dotenv
|
|
||||||
*/
|
|
||||||
// require('dotenv').config();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* See https://playwright.dev/docs/test-configuration.
|
|
||||||
*/
|
|
||||||
export default defineConfig({
|
|
||||||
testDir: './tests',
|
|
||||||
/* Run tests in files in parallel */
|
|
||||||
fullyParallel: true,
|
|
||||||
/* Fail the build on CI if you accidentally left test.only in the source code. */
|
|
||||||
forbidOnly: !!process.env.CI,
|
|
||||||
/* Retry on CI only */
|
|
||||||
retries: process.env.CI ? 2 : 0,
|
|
||||||
/* Opt out of parallel tests on CI. */
|
|
||||||
workers: process.env.CI ? 1 : undefined,
|
|
||||||
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
|
|
||||||
reporter: 'html',
|
|
||||||
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
|
|
||||||
use: {
|
|
||||||
/* Base URL to use in actions like `await page.goto('/')`. */
|
|
||||||
// baseURL: 'http://127.0.0.1:3000',
|
|
||||||
|
|
||||||
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
|
|
||||||
trace: 'on-first-retry',
|
|
||||||
},
|
|
||||||
|
|
||||||
/* Configure projects for major browsers */
|
|
||||||
projects: [
|
|
||||||
{
|
|
||||||
name: 'chromium',
|
|
||||||
use: { ...devices['Desktop Chrome'] },
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
name: 'firefox',
|
|
||||||
use: { ...devices['Desktop Firefox'] },
|
|
||||||
},
|
|
||||||
|
|
||||||
//{
|
|
||||||
// name: 'webkit',
|
|
||||||
// use: { ...devices['Desktop Safari'] },
|
|
||||||
//},
|
|
||||||
|
|
||||||
/* Test against mobile viewports. */
|
|
||||||
{
|
|
||||||
name: 'Mobile Chrome',
|
|
||||||
use: { ...devices['Pixel 5'] },
|
|
||||||
},
|
|
||||||
//{
|
|
||||||
// name: 'Mobile Safari',
|
|
||||||
// use: { ...devices['iPhone 12'] },
|
|
||||||
//},
|
|
||||||
|
|
||||||
/* Test against branded browsers. */
|
|
||||||
//{
|
|
||||||
// name: 'Microsoft Edge',
|
|
||||||
// use: { ...devices['Desktop Edge'], channel: 'msedge' },
|
|
||||||
//},
|
|
||||||
//{
|
|
||||||
// name: 'Google Chrome',
|
|
||||||
// use: { ...devices['Desktop Chrome'], channel: 'chrome' },
|
|
||||||
//},
|
|
||||||
],
|
|
||||||
|
|
||||||
/* Run your local dev server before starting the tests */
|
|
||||||
webServer: {
|
|
||||||
command: 'cd .. && ./test_db.sh && cargo r',
|
|
||||||
},
|
|
||||||
});
|
|
@ -1,120 +0,0 @@
|
|||||||
import { test, expect, Page } from '@playwright/test';
|
|
||||||
|
|
||||||
test('cox can create and delete trip', async ({ page }) => {
|
|
||||||
await page.goto('http://localhost:8000/auth');
|
|
||||||
await page.getByPlaceholder('Name').click();
|
|
||||||
await page.getByPlaceholder('Name').fill('cox');
|
|
||||||
await page.getByPlaceholder('Name').press('Tab');
|
|
||||||
await page.getByPlaceholder('Passwort').fill('cox');
|
|
||||||
await page.getByPlaceholder('Passwort').press('Enter');
|
|
||||||
await page.getByRole('link', { name: 'Geplante Ausfahrten' }).click();
|
|
||||||
await page.locator('.relative').first().click();
|
|
||||||
await page.locator('#sidebar #planned_starting_time').click();
|
|
||||||
await page.locator('#sidebar #planned_starting_time').fill('18:00');
|
|
||||||
await page.locator('#sidebar #planned_starting_time').press('Tab');
|
|
||||||
await page.locator('#sidebar #planned_starting_time').press('Tab');
|
|
||||||
await page.getByRole('spinbutton').fill('5');
|
|
||||||
await page.getByRole('button', { name: 'Erstellen', exact: true }).click();
|
|
||||||
await page.getByRole('link', { name: 'Geplante Ausfahrten' }).click();
|
|
||||||
await expect(page.locator('body')).toContainText('18:00 Uhr (cox) Details');
|
|
||||||
|
|
||||||
await page.goto('http://localhost:8000/planned');
|
|
||||||
await page.getByRole('link', { name: 'Details' }).click();
|
|
||||||
await page.getByRole('link', { name: 'Termin löschen' }).click();
|
|
||||||
await expect(page.locator('body')).toContainText('Erfolgreich gelöscht!');
|
|
||||||
});
|
|
||||||
|
|
||||||
// TODO: group -> cox can create trips
|
|
||||||
// TODO: cox can help/register at trips/events
|
|
||||||
|
|
||||||
test.describe('cox can edit trips', () => {
|
|
||||||
let sharedPage: Page;
|
|
||||||
|
|
||||||
test.beforeEach(async ({ browser }) => {
|
|
||||||
const page = await browser.newPage();
|
|
||||||
|
|
||||||
await page.goto('http://localhost:8000/auth');
|
|
||||||
await page.getByPlaceholder('Name').click();
|
|
||||||
await page.getByPlaceholder('Name').fill('cox');
|
|
||||||
await page.getByPlaceholder('Name').press('Tab');
|
|
||||||
await page.getByPlaceholder('Passwort').fill('cox');
|
|
||||||
await page.getByPlaceholder('Passwort').press('Enter');
|
|
||||||
await page.getByRole('link', { name: 'Geplante Ausfahrten' }).click();
|
|
||||||
await page.locator('.relative').first().click();
|
|
||||||
await page.locator('#sidebar #planned_starting_time').click();
|
|
||||||
await page.locator('#sidebar #planned_starting_time').fill('18:00');
|
|
||||||
await page.locator('#sidebar #planned_starting_time').press('Tab');
|
|
||||||
await page.locator('#sidebar #planned_starting_time').press('Tab');
|
|
||||||
await page.getByRole('spinbutton').fill('5');
|
|
||||||
await page.getByRole('button', { name: 'Erstellen', exact: true }).click();
|
|
||||||
|
|
||||||
sharedPage = page;
|
|
||||||
});
|
|
||||||
|
|
||||||
test('edit remarks', async () => {
|
|
||||||
await sharedPage.goto('http://localhost:8000/planned');
|
|
||||||
await sharedPage.getByRole('link', { name: 'Details' }).click();
|
|
||||||
await sharedPage.locator('#sidebar #notes').click();
|
|
||||||
await sharedPage.locator('#sidebar #notes').fill('Meine Anmerkung');
|
|
||||||
await sharedPage.getByRole('button', { name: 'Speichern' }).click();
|
|
||||||
await sharedPage.getByRole('link', { name: 'Geplante Ausfahrten' }).click();
|
|
||||||
await sharedPage.getByRole('link', { name: 'Details' }).click();
|
|
||||||
await expect(sharedPage.locator('#sidebar')).toContainText('Meine Anmerkung');
|
|
||||||
|
|
||||||
await sharedPage.getByRole('button', { name: 'Ausfahrt erstellen schließen' }).click();
|
|
||||||
});
|
|
||||||
|
|
||||||
test('add and remove guest', async () => {
|
|
||||||
await sharedPage.goto('http://localhost:8000/planned');
|
|
||||||
await sharedPage.getByRole('link', { name: 'Details' }).click();
|
|
||||||
await sharedPage.locator('#sidebar #user_note').click();
|
|
||||||
await sharedPage.locator('#sidebar #user_note').fill('Mein Gast');
|
|
||||||
await sharedPage.getByRole('button', { name: 'Gast hinzufügen' }).click();
|
|
||||||
await expect(sharedPage.locator('body')).toContainText('Erfolgreich angemeldet!');
|
|
||||||
await sharedPage.getByRole('link', { name: 'Details' }).click();
|
|
||||||
await expect(sharedPage.locator('#sidebar')).toContainText('Freie Plätze: 4');
|
|
||||||
await expect(sharedPage.locator('#sidebar')).toContainText('Mein Gast (Gast) Abmelden');
|
|
||||||
await expect(sharedPage.getByRole('link', { name: 'Termin löschen' })).not.toBeVisible();
|
|
||||||
|
|
||||||
await sharedPage.getByRole('link', { name: 'Abmelden' }).click();
|
|
||||||
await expect(sharedPage.locator('body')).toContainText('Erfolgreich abgemeldet!');
|
|
||||||
await sharedPage.getByRole('link', { name: 'Details' }).click();
|
|
||||||
await expect(sharedPage.locator('#sidebar')).toContainText('Freie Plätze: 5');
|
|
||||||
await expect(sharedPage.locator('#sidebar')).toContainText('Keine Ruderer angemeldet');
|
|
||||||
await expect(sharedPage.getByRole('link', { name: 'Termin löschen' })).toBeVisible();
|
|
||||||
|
|
||||||
await sharedPage.getByRole('button', { name: 'Ausfahrt erstellen schließen' }).click();
|
|
||||||
});
|
|
||||||
|
|
||||||
test('change amount rower', async () => {
|
|
||||||
await sharedPage.goto('http://localhost:8000/planned');
|
|
||||||
await sharedPage.getByRole('link', { name: 'Details' }).click();
|
|
||||||
await expect(sharedPage.locator('#sidebar')).toContainText('Freie Plätze: 5');
|
|
||||||
await sharedPage.getByRole('spinbutton').click();
|
|
||||||
await sharedPage.getByRole('spinbutton').fill('3');
|
|
||||||
await sharedPage.getByRole('button', { name: 'Speichern' }).click();
|
|
||||||
await expect(sharedPage.locator('body')).toContainText('Ausfahrt erfolgreich aktualisiert.');
|
|
||||||
await sharedPage.getByRole('link', { name: 'Geplante Ausfahrten' }).click();
|
|
||||||
});
|
|
||||||
|
|
||||||
test('call off trip', async () => {
|
|
||||||
await sharedPage.goto('http://localhost:8000/planned');
|
|
||||||
await sharedPage.getByRole('link', { name: 'Details' }).click();
|
|
||||||
await expect(sharedPage.locator('#sidebar')).toContainText('Freie Plätze: 5');
|
|
||||||
await sharedPage.getByRole('spinbutton').click();
|
|
||||||
await sharedPage.getByRole('spinbutton').fill('0');
|
|
||||||
await sharedPage.getByRole('button', { name: 'Speichern' }).click();
|
|
||||||
await expect(sharedPage.locator('body')).toContainText('Ausfahrt erfolgreich aktualisiert.');
|
|
||||||
await sharedPage.getByRole('link', { name: 'Geplante Ausfahrten' }).click();
|
|
||||||
await expect(sharedPage.locator('body')).toContainText('(Absage cox )');
|
|
||||||
});
|
|
||||||
|
|
||||||
test.afterEach(async () => {
|
|
||||||
await sharedPage.goto('http://localhost:8000/planned');
|
|
||||||
await sharedPage.getByRole('link', { name: 'Details' }).click();
|
|
||||||
await sharedPage.getByRole('link', { name: 'Termin löschen' }).click();
|
|
||||||
await sharedPage.close();
|
|
||||||
});
|
|
||||||
|
|
||||||
// TODO: 'Immer anzeigen' (also verify the functionality), 'Gesperrt' + type
|
|
||||||
});
|
|
@ -27,7 +27,7 @@ async fn login(login: Form<LoginForm<'_>>, db: &State<SqlitePool>) -> String {
|
|||||||
|
|
||||||
pub fn config(rocket: Rocket<Build>) -> Rocket<Build> {
|
pub fn config(rocket: Rocket<Build>) -> Rocket<Build> {
|
||||||
rocket
|
rocket
|
||||||
//.mount("/", FileServer::from("svelte/build").rank(0))
|
.mount("/", FileServer::from("svelte/build").rank(0))
|
||||||
.mount("/api/login", routes![login])
|
.mount("/api/login", routes![login])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
1
svelte/.gitignore
vendored
1
svelte/.gitignore
vendored
@ -1,5 +1,6 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
node_modules
|
node_modules
|
||||||
|
/build
|
||||||
/.svelte-kit
|
/.svelte-kit
|
||||||
/package
|
/package
|
||||||
.env
|
.env
|
||||||
|
@ -209,7 +209,7 @@
|
|||||||
{% if rower.is_real_guest %}
|
{% if rower.is_real_guest %}
|
||||||
<small class="text-gray-600 dark:text-gray-100">(Gast)</small>
|
<small class="text-gray-600 dark:text-gray-100">(Gast)</small>
|
||||||
{% if allow_removing %}
|
{% if allow_removing %}
|
||||||
<a href="/planned/remove/{{ trip_details_id }}/{{ rower.name }}" class="btn btn-attention btn-fw">Abmelden</a>
|
<a href="/remove/{{ trip_details_id }}/{{ rower.name }}" class="btn btn-attention btn-fw">Abmelden</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<span class="hidden">(angemeldet seit
|
<span class="hidden">(angemeldet seit
|
||||||
|
Loading…
Reference in New Issue
Block a user