Introduce QC-GATE station monitoring with stacked bar chart and filterable LOT table, using Vue 3 SFC + ECharts via npm. Establishes the pure Vite page architecture pattern (no Jinja2) for future page migration. Also removes stale design files and README.mdj. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
72 lines
2.1 KiB
Python
72 lines
2.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""Tests for QC-GATE API and page routes."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from unittest.mock import patch
|
|
|
|
import mes_dashboard.core.database as db
|
|
from flask import Response
|
|
|
|
from mes_dashboard.app import create_app
|
|
|
|
|
|
def _client():
|
|
db._ENGINE = None
|
|
app = create_app('testing')
|
|
app.config['TESTING'] = True
|
|
return app.test_client()
|
|
|
|
|
|
@patch('mes_dashboard.routes.qc_gate_routes.get_qc_gate_summary')
|
|
def test_qc_gate_summary_route_returns_success(mock_get_summary):
|
|
mock_get_summary.return_value = {
|
|
'cache_time': '2026-02-09T12:00:00',
|
|
'stations': [
|
|
{
|
|
'specname': 'QC-GATE-A',
|
|
'spec_order': 10,
|
|
'buckets': {
|
|
'lt_6h': 1,
|
|
'6h_12h': 0,
|
|
'12h_24h': 0,
|
|
'gt_24h': 0,
|
|
},
|
|
'total': 1,
|
|
'lots': [],
|
|
}
|
|
],
|
|
}
|
|
|
|
response = _client().get('/api/qc-gate/summary')
|
|
payload = response.get_json()
|
|
|
|
assert response.status_code == 200
|
|
assert payload['success'] is True
|
|
assert payload['data']['cache_time'] == '2026-02-09T12:00:00'
|
|
assert payload['data']['stations'][0]['specname'] == 'QC-GATE-A'
|
|
|
|
|
|
@patch('mes_dashboard.routes.qc_gate_routes.get_qc_gate_summary', return_value=None)
|
|
def test_qc_gate_summary_route_returns_500_on_failure(_mock_get_summary):
|
|
response = _client().get('/api/qc-gate/summary')
|
|
payload = response.get_json()
|
|
|
|
assert response.status_code == 500
|
|
assert payload['success'] is False
|
|
assert 'error' in payload
|
|
|
|
|
|
@patch('mes_dashboard.app.send_from_directory')
|
|
def test_qc_gate_page_served_from_static_dist(mock_send_from_directory):
|
|
mock_send_from_directory.return_value = Response('<html>ok</html>', mimetype='text/html')
|
|
|
|
response = _client().get('/qc-gate')
|
|
|
|
assert response.status_code == 200
|
|
assert 'text/html' in response.content_type
|
|
|
|
call_args = mock_send_from_directory.call_args[0]
|
|
assert call_args[0].endswith('/static/dist')
|
|
assert call_args[1] == 'qc-gate.html'
|