File size: 8,583 Bytes
b190b45 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>API Endpoints Test</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background: #1a1a1a;
color: #fff;
}
h1 {
color: #4CAF50;
}
.test-section {
background: #2a2a2a;
padding: 15px;
margin: 10px 0;
border-radius: 5px;
border-left: 4px solid #4CAF50;
}
.endpoint {
margin: 10px 0;
padding: 10px;
background: #333;
border-radius: 3px;
}
.endpoint-url {
color: #64B5F6;
font-family: monospace;
font-size: 14px;
}
button {
background: #4CAF50;
color: white;
border: none;
padding: 8px 16px;
border-radius: 4px;
cursor: pointer;
margin: 5px;
}
button:hover {
background: #45a049;
}
.result {
margin-top: 10px;
padding: 10px;
background: #1a1a1a;
border-radius: 3px;
white-space: pre-wrap;
font-family: monospace;
font-size: 12px;
max-height: 300px;
overflow-y: auto;
}
.success {
border-left: 4px solid #4CAF50;
}
.error {
border-left: 4px solid #f44336;
}
.loading {
color: #FFC107;
}
</style>
<!-- API Configuration - Smart Fallback System -->
<script src="/static/js/api-config.js"></script>
<script>
// Initialize API client
window.apiReady = new Promise((resolve) => {
if (window.apiClient) {
console.log('β
API Client ready');
resolve(window.apiClient);
} else {
console.error('β API Client not loaded');
}
});
</script>
</head>
<body>
<h1>π§ API Endpoints Test</h1>
<p>Testing all fixed endpoints...</p>
<div class="test-section">
<h2>1. Health Check</h2>
<div class="endpoint">
<div class="endpoint-url">GET /api/health</div>
<button onclick="testHealth()">Test</button>
<div id="health-result" class="result"></div>
</div>
</div>
<div class="test-section">
<h2>2. Exchange Rate (Fixed)</h2>
<div class="endpoint">
<div class="endpoint-url">GET /api/service/rate?pair=BTC/USDT</div>
<button onclick="testRate()">Test</button>
<div id="rate-result" class="result"></div>
</div>
</div>
<div class="test-section">
<h2>3. Market OHLC (New)</h2>
<div class="endpoint">
<div class="endpoint-url">GET /api/market/ohlc?symbol=BTC&interval=1h&limit=10</div>
<button onclick="testOHLC()">Test</button>
<div id="ohlc-result" class="result"></div>
</div>
</div>
<div class="test-section">
<h2>4. OHLCV (New)</h2>
<div class="endpoint">
<div class="endpoint-url">GET /api/ohlcv?symbol=BTC&timeframe=1h&limit=10</div>
<button onclick="testOHLCV()">Test</button>
<div id="ohlcv-result" class="result"></div>
</div>
</div>
<div class="test-section">
<h2>5. Latest News (Fixed - Real Data Only)</h2>
<div class="endpoint">
<div class="endpoint-url">GET /api/news/latest?limit=3</div>
<button onclick="testNews()">Test</button>
<div id="news-result" class="result"></div>
</div>
</div>
<div class="test-section">
<h2>6. Test All Endpoints</h2>
<button onclick="testAll()" style="background: #2196F3; font-size: 16px; padding: 12px 24px;">π Test All Endpoints</button>
<div id="all-results" class="result"></div>
</div>
<script>
const API_BASE = window.location.origin;
async function testEndpoint(url, resultId) {
const resultDiv = document.getElementById(resultId);
resultDiv.className = 'result loading';
resultDiv.textContent = 'β³ Testing...';
try {
const startTime = Date.now();
const response = await fetch(url);
const duration = Date.now() - startTime;
const data = await response.json();
if (response.ok) {
resultDiv.className = 'result success';
resultDiv.textContent = `β
SUCCESS (${duration}ms)\n\n${JSON.stringify(data, null, 2)}`;
} else {
resultDiv.className = 'result error';
resultDiv.textContent = `β ERROR ${response.status}\n\n${JSON.stringify(data, null, 2)}`;
}
} catch (error) {
resultDiv.className = 'result error';
resultDiv.textContent = `β FAILED\n\n${error.message}\n\nβ οΈ Make sure Flask server is running and restarted after code changes!`;
}
}
function testHealth() {
testEndpoint(`${API_BASE}/api/health`, 'health-result');
}
function testRate() {
testEndpoint(`${API_BASE}/api/service/rate?pair=BTC/USDT`, 'rate-result');
}
function testOHLC() {
testEndpoint(`${API_BASE}/api/market/ohlc?symbol=BTC&interval=1h&limit=10`, 'ohlc-result');
}
function testOHLCV() {
testEndpoint(`${API_BASE}/api/ohlcv?symbol=BTC&timeframe=1h&limit=10`, 'ohlcv-result');
}
function testNews() {
testEndpoint(`${API_BASE}/api/news/latest?limit=3`, 'news-result');
}
async function testAll() {
const allResults = document.getElementById('all-results');
allResults.className = 'result loading';
allResults.textContent = 'β³ Testing all endpoints...\n\n';
const endpoints = [
{ name: 'Health', url: '/api/health' },
{ name: 'Exchange Rate', url: '/api/service/rate?pair=BTC/USDT' },
{ name: 'Market OHLC', url: '/api/market/ohlc?symbol=BTC&interval=1h&limit=10' },
{ name: 'OHLCV', url: '/api/ohlcv?symbol=BTC&timeframe=1h&limit=10' },
{ name: 'Latest News', url: '/api/news/latest?limit=3' }
];
let results = [];
for (const endpoint of endpoints) {
try {
const startTime = Date.now();
const response = await fetch(`${API_BASE}${endpoint.url}`);
const duration = Date.now() - startTime;
const data = await response.json();
if (response.ok) {
results.push(`β
${endpoint.name}: SUCCESS (${duration}ms)`);
} else {
results.push(`β ${endpoint.name}: ERROR ${response.status}`);
}
} catch (error) {
results.push(`β ${endpoint.name}: FAILED - ${error.message}`);
}
allResults.textContent = results.join('\n') + '\n\nβ³ Testing...';
}
const successCount = results.filter(r => r.startsWith('β
')).length;
const totalCount = results.length;
allResults.className = successCount === totalCount ? 'result success' : 'result error';
allResults.textContent = results.join('\n') + `\n\nπ Results: ${successCount}/${totalCount} passed`;
if (successCount < totalCount) {
allResults.textContent += '\n\nβ οΈ Some endpoints failed. Make sure:';
allResults.textContent += '\n1. Flask server is running (python app.py)';
allResults.textContent += '\n2. Server was restarted after code changes';
allResults.textContent += '\n3. Check server logs for errors';
}
}
// Auto-test on load
window.addEventListener('load', () => {
setTimeout(testAll, 1000);
});
</script>
</body>
</html>
|