Removed Test object to simplify database schema; updated docker scripts to run database migrations before starting the server if the database doesn't exist
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2024-02-09 08:40:34 -05:00
parent c83d517437
commit ef2e0a12a5
17 changed files with 17 additions and 274 deletions

View File

@ -1,36 +1,6 @@
<div class="grid-x grid-margin-x">
<% if tests.length > 0 %>
<div class="cell small-12">
<h2>Latest tests:</h2>
</div>
<div class="cell small-12">
<table>
<thead>
<tr>
<th>Hardware tested</th>
<th>Benchmark used</th>
<th># results</th>
</tr>
</thead>
<tbody>
<% tests.each do |t| %>
<tr>
<td><%= t.hardware.name %></td>
<td><%= t.benchmark.name %></td>
<td><%= t.results.length %></td>
</tr>
<% end %>
</tbody>
</table>
</div>
<% else %>
<div class="cell small-12">
<p>I'm sorry, there don't appear to be any tests created yet. Check again later!</p>
</div>
<% end %>
<% if results.length > 0 %>
<div class="cell small-12">``
<div class="cell small-12">
<h2>Latest benchmark results:</h2>
</div>
<div class="cell small-12">
@ -46,9 +16,8 @@
<tbody>
<% results.each do |r| %>
<tr>
<td><%= r.test.name %></td>
<td><%= r.test.hardware.name %></td>
<td><%= r.test.benchmark.name %></td>
<td><%= r.hardware.name %></td>
<td><%= r.benchmark.name %></td>
<td><%= r.formatted_score() %></td>
</tr>
<% end %>

View File

@ -4,9 +4,8 @@
<li><a href="/">Dashboard</a></li>
<li><a href="/hardware">Hardware</a></li>
<li><a href="/benchmark">Benchmarks</a></li>
<li><a href="/test">Tests</a></li>
<li><a href="/result">Results</a></li>
<li><a href="/comparison">Comparisons</a></li>
<li><a href="/reports">Reports</a></li>
</ul>
</div>
</div>

View File

@ -1,46 +0,0 @@
<div class="grid-x grid-margin-x">
<div class="cell small-12">
<h1>Add new test</h1>
</div>
</div>
<div class="grid-x grid-margin-x">
<form class="cell small-12" action="/test/add" method="post">
<div class="grid-x grid-padding-x">
<div class="cell small-12 medium-3">
<label>
Date Tag:
<input type="text" name="test_date_tag" placeholder="(XY/AB)">
</label>
</div>
<div class="cell medium-9">
<label>
Hardware:
<select name="test_hardware">
<% hardware.each do |h| %>
<option value="<%= h.id %>"><%= h.name %></option>
<% end %>
</select>
</label>
</div>
</div>
<div class="grid-x grid-padding-x">
<div class="cell small-12">
<label>
Benchmark:
<select name="test_benchmark[]" multiple>
<% benchmarks.each do |b| %>
<option value="<%= b.id %>"><%= b.name %></option>
<% end %>
</select>
</label>
</div>
</div>
<input type="submit" class="button" value="Submit">
</form>
</div>

View File

@ -1,42 +0,0 @@
<div class="grid-x grid-margin-x">
<div class="cell small-12">
<h1>List of tests</h1>
</div>
<div class="cell small-12">
<p>
<a href="/test/add">Add new test</a>
</p>
</div>
</div>
<div class="grid-x grid-margin-x">
<% if tests.length > 0 %>
<div class="cell small-12">
<table>
<thead>
<tr>
<th>Test name</th>
<th># of results</th>
<th>Date added</th>
<th>Date modified</th>
</tr>
</thead>
<tbody>
<% tests.each do |t| %>
<tr>
<td><a href="/test/<%= t.id %>"><%= t.name %></a></td>
<td><%= t.results.length %></td>
<td><%= date_format(t.created_at) %></td>
<td><%= date_format(t.updated_at) %></td>
</tr>
<% end %>
</tbody>
</table>
</div>
<% else %>
<div class="cell small-12">
<p>I'm sorry, there don't appear to be any tests added yet. Check again later!</p>
</div>
<% end %>
</div>

View File

@ -1,22 +0,0 @@
<div class="grid-x grid-margin-x">
<div class="cell small-12">
<h1 <%- unless test.valid? %> class="invalid"<% end %>><%= test.formatted_name %></h1>
<% unless test.valid? %>
<h4 class="invalid">Missing <%= test.missing_results %> results!</h4>
<% end %>
</div>
<div class="cell small-12">
<h3>Test results</h3>
<% if test.results.length > 0 %>
<ul>
<% test.results.each do |res| %>
<li></li>
<% end %>
</ul>
<% else %>
<p>There are no results</p>
<% end %>
</div>
</div>