From 90e6657f2e5a4d6f71b44a72e76139e4c96ce174 Mon Sep 17 00:00:00 2001 From: pavlov346346-source Date: Tue, 8 Sep 2026 05:53:42 +0300 Subject: [PATCH] Remove one-time deterministic E2E workflow --- .../workflows/fix-v1765-deterministic-e2e.yml | 58 ------------------- 1 file changed, 58 deletions(-) delete mode 100644 .github/workflows/fix-v1765-deterministic-e2e.yml diff --git a/.github/workflows/fix-v1765-deterministic-e2e.yml b/.github/workflows/fix-v1765-deterministic-e2e.yml deleted file mode 100644 index 6313a33..0000000 --- a/.github/workflows/fix-v1765-deterministic-e2e.yml +++ /dev/null @@ -1,58 +0,0 @@ -name: Fix Caterium v17.6.5 deterministic E2E - -on: - push: - branches: - - feature/v17.6.5-stability - paths: - - .github/workflows/fix-v1765-deterministic-e2e.yml - -permissions: - contents: write - -jobs: - patch: - if: github.actor != 'github-actions[bot]' - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Patch deterministic browser checks - run: | - python3 - <<'PY' - from pathlib import Path - p=Path('tests/app.spec.mjs') - s=p.read_text() - old="""test('v17.6.5 stays free of timer page errors during idle', async ({ page }, testInfo) => { - test.skip(testInfo.project.name!=='desktop'); - const errors=[];page.on('pageerror',e=>errors.push(String(e))); - await page.goto('/index.html',{waitUntil:'domcontentloaded'}); - await page.waitForTimeout(5500); - expect(errors).toEqual([]); - expect(await page.evaluate(()=>window.SunStabilityV17?.VERSION)).toBe('17.6.5'); -});""" - new="""test('v17.6.5 stays free of timer page errors during idle', async ({ page }, testInfo) => { - test.skip(testInfo.project.name!=='desktop'); - const errors=[];page.on('pageerror',e=>errors.push(String(e))); - await page.goto('/index.html',{waitUntil:'domcontentloaded'}); - await page.waitForTimeout(5500); - expect(errors).toEqual([]); - const runtimeSource=fs.readFileSync(path.join(process.cwd(),'public','app-runtime.js'),'utf8'); - expect(runtimeSource).toContain("const VERSION = '17.6.5'"); -});""" - assert s.count(old)==1, f'idle matches {s.count(old)}' - s=s.replace(old,new) - old2=""" await page.evaluate(()=>{try{window.SunOpsUXV1762?.disconnect?.()}catch(_){}window.SunOpsUXV1762=undefined;window.__lightRefresh=0;window.__fullEnter=0;window.SunCloudV2={getSupportMode:()=>({workspaceId:'support-test',name:'Тест'}),isSupportMode:()=>true,hasPermission:()=>false,getSession:()=>({user:{id:'dev'}}),refreshSupportWorkspace:async()=>{window.__lightRefresh++;return true},enterSupportWorkspace:async()=>{window.__fullEnter++;return true}};window.editBox=window.editBox||(()=>{});}); - await injectCore(page,'ops-ux-v1762.js','SunOpsUXV1762');""" - new2=""" await page.evaluate(()=>{try{window.SunOpsUXV1762?.disconnect?.()}catch(_){}document.getElementById('sunOpsUXV1762Script')?.remove();window.SunOpsUXV1762=undefined;window.__lightRefresh=0;window.__fullEnter=0;let nav=document.querySelector('header nav');if(!nav){const header=document.createElement('header');nav=document.createElement('nav');header.appendChild(nav);document.body.prepend(header)}window.SunCloudV2={getSupportMode:()=>({workspaceId:'support-test',name:'Тест'}),isSupportMode:()=>true,hasPermission:()=>false,getSession:()=>({user:{id:'dev'}}),refreshSupportWorkspace:async()=>{window.__lightRefresh++;return true},enterSupportWorkspace:async()=>{window.__fullEnter++;return true}};window.editBox=window.editBox||(()=>{});}); - await injectCore(page,'ops-ux-v1762.js'); - await page.waitForFunction(()=>Boolean(window.SunOpsUXV1762),null,{timeout:5000});""" - assert s.count(old2)==1, f'support matches {s.count(old2)}' - p.write_text(s.replace(old2,new2)) - PY - - name: Commit deterministic checks - run: | - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git add tests/app.spec.mjs - git commit -m "Make v17.6.5 E2E deterministic" - git push