aglinxinyuan opened a new issue, #7434:
URL: https://github.com/apache/texera/issues/7434
### Task Summary
The quota page's Result Cache tab is never rendered by its spec, which
drives the quota data and its charts only. About 16 template lines are
uncovered.
The reported cache size is the part worth testing:
```html
{{ formatSize(execution.resultBytes + execution.logBytes +
execution.runTimeStatsBytes) }}
```
Three separate byte counts are added together. A dropped or double-counted
term still produces a plausible-looking size, and nothing else in the suite
would notice. Using distinct powers of two in the fixture makes any such slip
land on a different total rather than coincidentally matching.
Also unpinned: one collapse panel per workflow headed by its name, the
executions listed under the opened workflow, the delete button carrying the
row's **execution** id rather than the workflow id, and the table paging at 3
rather than listing everything.
Note for whoever picks this up: `ngOnInit` resets `workflows`, so the first
change-detection cycle has to run before the fixture data is assigned, or it is
wiped before anything renders. The tab and its collapse panel also both need
opening.
### Task Type
- [ ] Refactor / Cleanup
- [ ] DevOps / Deployment / CI
- [x] Testing / QA
- [ ] Documentation
- [ ] Performance
- [ ] Other
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]