Compare commits
69 Commits
Author | SHA1 | Date | |
---|---|---|---|
431d94660d | |||
|
fd66449c28 | ||
|
cb55a19ada | ||
|
352950467c | ||
|
abc4abe80e | ||
|
ff8acd493b | ||
|
4b98322022 | ||
60d8554cf1 | |||
c19bb2108c | |||
27cff3e79b | |||
03ef5cc905 | |||
f81879302d | |||
9ecff3a25d | |||
bef17b5a59 | |||
82f42ecbed | |||
673e2e9634 | |||
178894a360 | |||
5fc381c4b9 | |||
c9d2f7114a | |||
bce063c5f4 | |||
b54d31213b | |||
ae4198f3cc | |||
9fdf6e2b99 | |||
8f0cce7550 | |||
d97fee0911 | |||
de107761eb | |||
26ad420436 | |||
47f3dcdbd1 | |||
6bb06205b0 | |||
b508efd5a8 | |||
e5a18f77f2 | |||
db41f0d6bd | |||
b93c8a5319 | |||
346b9e3911 | |||
446590acb1 | |||
a38ede5187 | |||
2b3f24ee5c | |||
9104125de7 | |||
5ad0810d81 | |||
e27fd8d214 | |||
3910c4dc9c | |||
3b8a30c7f8 | |||
293098e173 | |||
10298cbf7c | |||
743a108add | |||
c8a47b270a | |||
fde8d1dee4 | |||
bee64576bc | |||
3c1d48a9ed | |||
633fc4ac02 | |||
79924cd978 | |||
e5443fb644 | |||
81a87e2761 | |||
65550c983c | |||
f3a2376c19 | |||
99f45b3b3a | |||
4718aeaccd | |||
62654b9a3e | |||
93778274c2 | |||
7c13b1f209 | |||
e09d399c98 | |||
c9ad5df2ed | |||
0f89087134 | |||
819baeb0c3 | |||
fe303cb778 | |||
98bd1f7eca | |||
09a2667fc5 | |||
4020812549 | |||
8bc9849776 |
8
.gitignore
vendored
8
.gitignore
vendored
@@ -3,4 +3,12 @@ blt
|
|||||||
|
|
||||||
# Local data files
|
# Local data files
|
||||||
data/
|
data/
|
||||||
|
tmp/
|
||||||
|
|
||||||
|
# Compiled assets
|
||||||
|
public/css/
|
||||||
|
public/js/
|
||||||
|
|
||||||
|
# Node modules
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
32
.woodpecker.yml
Normal file
32
.woodpecker.yml
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
steps:
|
||||||
|
build:
|
||||||
|
image: golang:1.22
|
||||||
|
commands:
|
||||||
|
- go mod vendor
|
||||||
|
- GOOS=linux GOARCH=amd64 go build -o "dist/blt-linux-amd64-${CI_COMMIT_TAG}.bin"
|
||||||
|
- GOOS=windows GOARCH=amd64 go build -o "dist/blt-windows-amd64-${CI_COMMIT_TAG}.exe"
|
||||||
|
|
||||||
|
assets:
|
||||||
|
image: node:24
|
||||||
|
commands:
|
||||||
|
- npm install
|
||||||
|
- npm run grunt build
|
||||||
|
|
||||||
|
package:
|
||||||
|
image: alpine
|
||||||
|
commands:
|
||||||
|
- tar -cvzf "dist/blt-assets-${CI_COMMIT_TAG}.tar.gz" public/
|
||||||
|
when:
|
||||||
|
event: tag
|
||||||
|
|
||||||
|
gitea_release:
|
||||||
|
image: plugins/gitea-release
|
||||||
|
settings:
|
||||||
|
api_key:
|
||||||
|
from_secret: gitea_api_key
|
||||||
|
base_url: https://git.metaunix.net
|
||||||
|
title: "${CI_COMMIT_TAG}"
|
||||||
|
files:
|
||||||
|
- dist/blt-*
|
||||||
|
when:
|
||||||
|
event: tag
|
67
Gruntfile.js
Normal file
67
Gruntfile.js
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
module.exports = function(grunt) {
|
||||||
|
|
||||||
|
// Project configuration.
|
||||||
|
grunt.initConfig({
|
||||||
|
pkg: grunt.file.readJSON('package.json'),
|
||||||
|
|
||||||
|
sass: {
|
||||||
|
dist: {
|
||||||
|
options: {
|
||||||
|
style: 'compressed'
|
||||||
|
},
|
||||||
|
files: [{
|
||||||
|
expand: true,
|
||||||
|
cwd: 'assets/styles',
|
||||||
|
src: ['**/*.sass'],
|
||||||
|
dest: 'public/css',
|
||||||
|
ext: '.css'
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
coffee: {
|
||||||
|
options: {
|
||||||
|
sourceMap: true,
|
||||||
|
style: 'compressed'
|
||||||
|
},
|
||||||
|
files: {
|
||||||
|
expand: true,
|
||||||
|
flatten: true,
|
||||||
|
cwd: 'assets/scripts',
|
||||||
|
src: ['*.coffee'],
|
||||||
|
dest: 'public/js',
|
||||||
|
ext: '.js'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
css: {
|
||||||
|
files: ['assets/styles/**/*.sass'],
|
||||||
|
tasks: ['sass'],
|
||||||
|
options: {
|
||||||
|
atBegin: true,
|
||||||
|
spawn: false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
js: {
|
||||||
|
files: ['assets/scripts/**/*.coffee'],
|
||||||
|
tasks: ['coffee'],
|
||||||
|
options: {
|
||||||
|
atBegin: true,
|
||||||
|
spawn: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Load plugins.
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-sass');
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-coffee');
|
||||||
|
|
||||||
|
// CLI tasks.
|
||||||
|
grunt.registerTask('build', ['sass', 'coffee']);
|
||||||
|
grunt.registerTask('dev', ['watch']);
|
||||||
|
grunt.registerTask('default', ['build']);
|
||||||
|
|
||||||
|
};
|
9
LICENSE
Normal file
9
LICENSE
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
Copyright (c) 2023 Bit Goblin
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
12
Makefile
12
Makefile
@@ -4,7 +4,17 @@ VERSION=`git describe --tags`
|
|||||||
.PHONY: build
|
.PHONY: build
|
||||||
## build: Compile the packages.
|
## build: Compile the packages.
|
||||||
build:
|
build:
|
||||||
@go build -o $(NAME) -ldflags "-X git.metaunix.net/bitgoblin/blt/app.Version=$(VERSION)"
|
@go build -o $(NAME) -ldflags "-X git.metaunix.net/bitgoblin/blt/app.AppVersion=$(VERSION)"
|
||||||
|
|
||||||
|
.PHONY: grunt
|
||||||
|
## grunt: Compile frontend assets.
|
||||||
|
grunt:
|
||||||
|
@npm run grunt
|
||||||
|
|
||||||
|
.PHONY: grunt-watch
|
||||||
|
## grunt-watch: Compile frontend assets while watching for changes.
|
||||||
|
grunt-watch:
|
||||||
|
@npm run grunt watch
|
||||||
|
|
||||||
.PHONY: run
|
.PHONY: run
|
||||||
## run: Build and Run in development mode.
|
## run: Build and Run in development mode.
|
||||||
|
54
README.md
Normal file
54
README.md
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
# Benchmark Logging Tool (BLT)
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Web-based tool to store and organize PC hardware benchmarks.
|
||||||
|
|
||||||
|
## Project Goals
|
||||||
|
|
||||||
|
The goals of this project are to:
|
||||||
|
|
||||||
|
* Record benchmarking results from multiple devices - e.g. log from a laptop or a phone.
|
||||||
|
* Group results into tests to keep track of different testing configurations.
|
||||||
|
* Encourage running tests multiple times - it's good practice to run a benchmark multiple times for accuracy.
|
||||||
|
* Create comparisons of hardware tests to compare performance.
|
||||||
|
* Generate graphs of hardware comparisons for usage in videos and articles.
|
||||||
|
|
||||||
|
## Requirements
|
||||||
|
|
||||||
|
BLT runs on Go. It uses the built-in `go mod` tool to manage dependencies, thus there is no external tooling to install to build/run BLT.
|
||||||
|
|
||||||
|
Debian/Ubuntu: `apt install -y golang`
|
||||||
|
RedHat and clones: `dnf install -y golang`
|
||||||
|
|
||||||
|
## Production Deployment
|
||||||
|
|
||||||
|
**TODO**
|
||||||
|
|
||||||
|
## Development
|
||||||
|
|
||||||
|
### Via Docker
|
||||||
|
|
||||||
|
**TODO**
|
||||||
|
|
||||||
|
### Local/Native Development
|
||||||
|
|
||||||
|
BLT uses [fresh](https://github.com/gravityblast/fresh) to auto-reload the app. While this is not strictly necessary, it used to make development more convenient. If you wish to forego installing it, you may simply build and run the app with the standard `go run main.go`.
|
||||||
|
|
||||||
|
1. Install dependencies:
|
||||||
|
|
||||||
|
`go mod download`
|
||||||
|
|
||||||
|
2. Install fresh to auto-reload the app:
|
||||||
|
|
||||||
|
`go install github.com/gravityblast/fresh@latest`
|
||||||
|
|
||||||
|
3. Run the app via air:
|
||||||
|
|
||||||
|
`fresh`
|
||||||
|
|
||||||
|
4. If everything is running successfully you can open your browser and go to http://localhost:2830.
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
This project is available under the BSD 2-Clause license.
|
14
app/vars.go
14
app/vars.go
@@ -1,5 +1,15 @@
|
|||||||
package app
|
package app
|
||||||
|
|
||||||
var (
|
import (
|
||||||
Version string = "N/a"
|
"runtime"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
AppVersion string = "N/a"
|
||||||
|
RuntimeVersion string = runtimeVersion()
|
||||||
|
)
|
||||||
|
|
||||||
|
func runtimeVersion() string {
|
||||||
|
raw_string := runtime.Version()
|
||||||
|
return raw_string[2:]
|
||||||
|
}
|
||||||
|
7
assets/scripts/kebos.coffee
Normal file
7
assets/scripts/kebos.coffee
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
root = if typeof window isnt 'undefined' then window else global
|
||||||
|
|
||||||
|
root.roundDecimal = (value) ->
|
||||||
|
return Math.round(value * 100) / 100
|
||||||
|
|
||||||
|
$ ->
|
||||||
|
console.log('DOM is ready.')
|
62
assets/scripts/test.coffee
Normal file
62
assets/scripts/test.coffee
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
testId = $('#results-table').data('test-id')
|
||||||
|
|
||||||
|
$ ->
|
||||||
|
$('#result-form').on 'submit', (e) ->
|
||||||
|
e.preventDefault()
|
||||||
|
|
||||||
|
form = $(this)
|
||||||
|
formData = $(this).serialize()
|
||||||
|
benchmarkId = $(this).find('[name="result_benchmark"]').val()
|
||||||
|
|
||||||
|
$.post '/api/v1/result/add', formData, (response) ->
|
||||||
|
if response == 'success'
|
||||||
|
fetchTestBenchmarkResults(testId, benchmarkId)
|
||||||
|
form[0].reset()
|
||||||
|
|
||||||
|
fetchTestBenchmarkResults = (testId, benchmarkId) ->
|
||||||
|
try
|
||||||
|
benchmarkSearchParams = new URLSearchParams
|
||||||
|
benchmark_id: benchmarkId
|
||||||
|
benchmarkRes = await fetch("/api/v1/benchmark/details?#{benchmarkSearchParams}")
|
||||||
|
benchmarkData = await benchmarkRes.json()
|
||||||
|
|
||||||
|
resultSearchParams = new URLSearchParams
|
||||||
|
test_id: testId
|
||||||
|
benchmark_id: benchmarkId
|
||||||
|
resultRes = await fetch("/api/v1/result/list?#{resultSearchParams}")
|
||||||
|
resultData = await resultRes.json()
|
||||||
|
|
||||||
|
avg_total = 0
|
||||||
|
min_total = 0
|
||||||
|
max_total = 0
|
||||||
|
|
||||||
|
for result in resultData
|
||||||
|
avg_total += result.AverageScore
|
||||||
|
min_total += result.MinimumScore if result.MinimumScore
|
||||||
|
max_total += result.MaximumScore if result.MaximumScore
|
||||||
|
|
||||||
|
tableRow = $("#results-table tr[data-benchmark-id=#{benchmarkId}]")
|
||||||
|
tableRow.empty()
|
||||||
|
|
||||||
|
tableRow.append('<td><a href="/benchmark/' + benchmarkData.ID + '">' + benchmarkData.Name + '</a></td>')
|
||||||
|
tableRow.append('<td>' + benchmarkData.ScoringType + '</td>')
|
||||||
|
tableRow.append('<td>' + resultData.length + '</td>')
|
||||||
|
|
||||||
|
if resultData.length != 0
|
||||||
|
tableRow.append('<td>' + roundDecimal(avg_total / resultData.length) + '</td>')
|
||||||
|
else
|
||||||
|
tableRow.append('<td>N/a</td>')
|
||||||
|
|
||||||
|
if min_total != 0
|
||||||
|
tableRow.append('<td>' + roundDecimal(min_total / resultData.length) + '</td>')
|
||||||
|
tableRow.append('<td>' + roundDecimal(max_total / resultData.length) + '</td>')
|
||||||
|
else
|
||||||
|
tableRow.append('<td>N/a</td>')
|
||||||
|
tableRow.append('<td>N/a</td>')
|
||||||
|
catch error
|
||||||
|
console.error 'An error occurred while fetching benchmark results.', error
|
||||||
|
|
||||||
|
$('#results-table tbody tr').each (index, tr) ->
|
||||||
|
benchmarkId = $(tr).data('benchmark-id')
|
||||||
|
console.log("Fetching results for benchmark id: " + benchmarkId)
|
||||||
|
fetchTestBenchmarkResults(testId, benchmarkId)
|
133
assets/styles/kourend.sass
Normal file
133
assets/styles/kourend.sass
Normal file
@@ -0,0 +1,133 @@
|
|||||||
|
html,
|
||||||
|
body
|
||||||
|
width: 100%
|
||||||
|
height: 100%
|
||||||
|
margin: 0
|
||||||
|
padding: 0
|
||||||
|
|
||||||
|
body
|
||||||
|
height: auto
|
||||||
|
min-height: 100%
|
||||||
|
box-sizing: border-box
|
||||||
|
padding-top: 80px
|
||||||
|
padding-bottom: 100px
|
||||||
|
background: #eee
|
||||||
|
|
||||||
|
a
|
||||||
|
color: teal
|
||||||
|
transition: color 180ms ease-in-out
|
||||||
|
&:hover
|
||||||
|
color: darkcyan
|
||||||
|
|
||||||
|
button.button-primary
|
||||||
|
background: teal
|
||||||
|
transition: background 180ms ease-in-out
|
||||||
|
&:hover
|
||||||
|
background: darkcyan
|
||||||
|
|
||||||
|
textarea
|
||||||
|
max-width: 100%
|
||||||
|
min-width: 100%
|
||||||
|
height: 100px
|
||||||
|
|
||||||
|
|
||||||
|
form select[multiple]
|
||||||
|
min-height: 100px
|
||||||
|
|
||||||
|
table
|
||||||
|
border: 1px solid #ddd
|
||||||
|
border-radius: 8px
|
||||||
|
border-spacing: 0
|
||||||
|
overflow: hidden
|
||||||
|
|
||||||
|
table th,
|
||||||
|
table td,
|
||||||
|
table th:first-child,
|
||||||
|
table td:first-child
|
||||||
|
border: none
|
||||||
|
padding: 7px 12px
|
||||||
|
|
||||||
|
table thead tr
|
||||||
|
border-radius: 8px 8px 0 0
|
||||||
|
&:last-child
|
||||||
|
border-radius: 0 0 8px 8px
|
||||||
|
|
||||||
|
table thead tr,
|
||||||
|
table tr:nth-child(even)
|
||||||
|
background: #eee
|
||||||
|
|
||||||
|
table tbody tr
|
||||||
|
transition: background 180ms ease-in-out
|
||||||
|
&:hover
|
||||||
|
background: lightgrey
|
||||||
|
|
||||||
|
/* Material card styles */
|
||||||
|
.card-1
|
||||||
|
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24)
|
||||||
|
transition: all 0.3s cubic-bezier(.25,.8,.25,1)
|
||||||
|
&:hover
|
||||||
|
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22)
|
||||||
|
|
||||||
|
.card-2
|
||||||
|
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23)
|
||||||
|
|
||||||
|
.card-3
|
||||||
|
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23)
|
||||||
|
|
||||||
|
.card-4
|
||||||
|
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22)
|
||||||
|
|
||||||
|
.card-5
|
||||||
|
box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22)
|
||||||
|
|
||||||
|
.container
|
||||||
|
max-width: 1200px
|
||||||
|
|
||||||
|
#main-nav
|
||||||
|
position: fixed
|
||||||
|
top: 0
|
||||||
|
left: 0
|
||||||
|
width: 100%
|
||||||
|
height: 64px
|
||||||
|
background: teal
|
||||||
|
color: white
|
||||||
|
z-index: 20
|
||||||
|
|
||||||
|
ul
|
||||||
|
list-style: none
|
||||||
|
display: inline-block
|
||||||
|
|
||||||
|
li
|
||||||
|
display: inline-block
|
||||||
|
margin-left: 15px
|
||||||
|
|
||||||
|
h4
|
||||||
|
display: inline-block
|
||||||
|
margin-left: 25px
|
||||||
|
line-height: 64px
|
||||||
|
|
||||||
|
a
|
||||||
|
color: white
|
||||||
|
font-size: 2.25rem
|
||||||
|
line-height: 64px
|
||||||
|
transition: all 200ms ease-in-out
|
||||||
|
&:hover
|
||||||
|
color: #eee
|
||||||
|
font-size: 2.5rem
|
||||||
|
|
||||||
|
#main-content
|
||||||
|
padding: 15px 25px
|
||||||
|
background: white
|
||||||
|
border-radius: 8px
|
||||||
|
z-index: 10
|
||||||
|
|
||||||
|
#main-footer
|
||||||
|
position: fixed
|
||||||
|
bottom: 0
|
||||||
|
left: 0
|
||||||
|
width: 100%
|
||||||
|
height: 64px
|
||||||
|
|
||||||
|
p
|
||||||
|
margin-bottom: 5px
|
||||||
|
text-align: center
|
15
main.go
15
main.go
@@ -1,6 +1,7 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
gotemplate "html/template"
|
||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
@@ -21,8 +22,20 @@ func main() {
|
|||||||
// initialize database
|
// initialize database
|
||||||
models.Open()
|
models.Open()
|
||||||
|
|
||||||
|
// initialize base renderer
|
||||||
|
f.Use(flamego.Renderer())
|
||||||
|
|
||||||
// initialize templating engine
|
// initialize templating engine
|
||||||
f.Use(template.Templater())
|
f.Use(template.Templater(template.Options{
|
||||||
|
FuncMaps: []gotemplate.FuncMap{
|
||||||
|
{
|
||||||
|
"contains": web.Contains,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Directory: "templates",
|
||||||
|
Extensions: []string{".tmpl", ".html"},
|
||||||
|
},
|
||||||
|
))
|
||||||
|
|
||||||
// inject custom middleware
|
// inject custom middleware
|
||||||
f.Use(middleware.CustomVars)
|
f.Use(middleware.CustomVars)
|
||||||
|
@@ -1,6 +1,8 @@
|
|||||||
package models
|
package models
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"strconv"
|
||||||
|
|
||||||
"gorm.io/gorm"
|
"gorm.io/gorm"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -11,5 +13,12 @@ type Benchmark struct {
|
|||||||
Description string
|
Description string
|
||||||
|
|
||||||
// many-to-many test
|
// many-to-many test
|
||||||
Tests[] Test `gorm:"many2many:tests_benchmarks;"`
|
Tests []Test `gorm:"many2many:tests_benchmarks;"`
|
||||||
|
|
||||||
|
// has many results
|
||||||
|
Results []Result
|
||||||
|
}
|
||||||
|
|
||||||
|
func (b *Benchmark) StringID() string {
|
||||||
|
return strconv.Itoa(int(b.ID))
|
||||||
}
|
}
|
||||||
|
@@ -10,5 +10,5 @@ type Hardware struct {
|
|||||||
Type string
|
Type string
|
||||||
|
|
||||||
// has many tests
|
// has many tests
|
||||||
Tests[] Test
|
Tests []Test
|
||||||
}
|
}
|
||||||
|
@@ -21,6 +21,6 @@ func Open() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Migrate the schema
|
// Migrate the schema
|
||||||
DB.AutoMigrate(&Test{}, &Hardware{}, &Benchmark{})
|
DB.AutoMigrate(&Test{}, &Hardware{}, &Benchmark{}, &Result{})
|
||||||
log.Println("Database migrations complete.")
|
log.Println("Database migrations complete.")
|
||||||
}
|
}
|
||||||
|
20
models/result.go
Normal file
20
models/result.go
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
package models
|
||||||
|
|
||||||
|
import (
|
||||||
|
"gorm.io/gorm"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Result struct {
|
||||||
|
gorm.Model
|
||||||
|
AverageScore float32
|
||||||
|
MinimumScore float32
|
||||||
|
MaximumScore float32
|
||||||
|
|
||||||
|
// belongs to Benchmark
|
||||||
|
BenchmarkID int
|
||||||
|
Benchmark Benchmark
|
||||||
|
|
||||||
|
// belongs to Test
|
||||||
|
TestID int
|
||||||
|
Test Test
|
||||||
|
}
|
@@ -1,6 +1,8 @@
|
|||||||
package models
|
package models
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"strconv"
|
||||||
|
|
||||||
"gorm.io/gorm"
|
"gorm.io/gorm"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -14,5 +16,29 @@ type Test struct {
|
|||||||
Hardware Hardware
|
Hardware Hardware
|
||||||
|
|
||||||
// many-to-many benchmarks
|
// many-to-many benchmarks
|
||||||
Benchmarks[] Benchmark `gorm:"many2many:tests_benchmarks;"`
|
Benchmarks []Benchmark `gorm:"many2many:tests_benchmarks;"`
|
||||||
|
|
||||||
|
// has many results
|
||||||
|
Results []Result
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *Test) SelectedBenchmarks() []string {
|
||||||
|
benchmarks := t.Benchmarks
|
||||||
|
ids := make([]string, len(benchmarks))
|
||||||
|
for i, b := range benchmarks {
|
||||||
|
ids[i] = strconv.Itoa(int(b.ID))
|
||||||
|
}
|
||||||
|
return ids
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *Test) IsBenchmarkSelected(benchmarkID uint) bool {
|
||||||
|
benchmarkUint := uint(benchmarkID)
|
||||||
|
|
||||||
|
for _, b := range t.Benchmarks {
|
||||||
|
if b.ID == benchmarkUint {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
|
1853
package-lock.json
generated
Normal file
1853
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
36
package.json
Normal file
36
package.json
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
{
|
||||||
|
"name": "blt",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"description": "Self-hosted PC hardware benchmark logging tool",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"grunt": "grunt",
|
||||||
|
"nodemon": "nodemon"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "gitea@git.metaunix.net:BitGoblin/blt.git"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"hardware",
|
||||||
|
"benchmark",
|
||||||
|
"testing",
|
||||||
|
"PC"
|
||||||
|
],
|
||||||
|
"author": "Gregory Ballanine <gballantine@bitgoblin.tech>",
|
||||||
|
"uploaders": [
|
||||||
|
{
|
||||||
|
"name": "Gregory Ballantine",
|
||||||
|
"email": "gballantine@bitgoblin.tech"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"license": "BSD-2-Clause",
|
||||||
|
"devDependencies": {
|
||||||
|
"grunt": "^1.5.3",
|
||||||
|
"grunt-cli": "^1.4.3",
|
||||||
|
"grunt-contrib-coffee": "^2.1.0",
|
||||||
|
"grunt-contrib-sass": "^2.0.0",
|
||||||
|
"grunt-contrib-watch": "^1.1.0",
|
||||||
|
"sass": "^1.55.0"
|
||||||
|
}
|
||||||
|
}
|
@@ -1,87 +0,0 @@
|
|||||||
html,
|
|
||||||
body{
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
body{
|
|
||||||
height: auto;
|
|
||||||
min-height: 100%;
|
|
||||||
box-sizing: border-box;
|
|
||||||
padding-top: 80px;
|
|
||||||
padding-bottom: 80px;
|
|
||||||
background: #eee;
|
|
||||||
}
|
|
||||||
|
|
||||||
textarea{
|
|
||||||
max-width: 100%;
|
|
||||||
min-width: 100%;
|
|
||||||
height: 100px;
|
|
||||||
}
|
|
||||||
|
|
||||||
form select[multiple]{
|
|
||||||
min-height: 100px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.container{
|
|
||||||
max-width: 1024px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-nav{
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 64px;
|
|
||||||
background: teal;
|
|
||||||
color: white;
|
|
||||||
z-index: 20;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-nav ul{
|
|
||||||
list-style: none;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
#main-nav h4{
|
|
||||||
display: inline-block;
|
|
||||||
margin-left: 25px;
|
|
||||||
line-height: 64px;
|
|
||||||
}
|
|
||||||
#main-nav ul li{
|
|
||||||
display: inline-block;
|
|
||||||
margin-left: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-nav a{
|
|
||||||
color: white;
|
|
||||||
font-size: 2.25rem;
|
|
||||||
line-height: 64px;
|
|
||||||
transition: all 200ms ease-in-out;
|
|
||||||
}
|
|
||||||
#main-nav a:hover{
|
|
||||||
color: #eee;
|
|
||||||
font-size: 2.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-content{
|
|
||||||
padding: 14px 20px;
|
|
||||||
background: white;
|
|
||||||
border-radius: 8px;
|
|
||||||
z-index: 10;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-footer{
|
|
||||||
position: fixed;
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 64px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-footer p{
|
|
||||||
margin-bottom: 5px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
14
runner.conf
Normal file
14
runner.conf
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
root: .
|
||||||
|
tmp_path: ./tmp
|
||||||
|
build_name: runner-build
|
||||||
|
build_log: runner-build-errors.log
|
||||||
|
valid_ext: .go, .tpl, .tmpl, .html
|
||||||
|
no_rebuild_ext: .tpl, .tmpl, .html
|
||||||
|
ignored: assets, tmp, node_modules, data, vendor
|
||||||
|
build_delay: 600
|
||||||
|
colors: 1
|
||||||
|
log_color_main: cyan
|
||||||
|
log_color_build: yellow
|
||||||
|
log_color_runner: green
|
||||||
|
log_color_watcher: magenta
|
||||||
|
log_color_app:
|
38
templates/benchmark/edit.tmpl
Normal file
38
templates/benchmark/edit.tmpl
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
{{ template "header" . }}
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<h2>Editing Benchmark: {{ .benchmark.Name }}</h2>
|
||||||
|
|
||||||
|
<form class="twelve columns" action="/benchmark/{{ .benchmark.ID }}/edit" method="POST">
|
||||||
|
<div class="row">
|
||||||
|
<div class="nine columns">
|
||||||
|
<label for="benchmark_name">
|
||||||
|
Benchmark name:
|
||||||
|
<input id="benchmark_name" class="u-full-width" type="text" name="benchmark_name" placeholder="Unigine Heaven" value="{{ .benchmark.Name }}">
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="three columns">
|
||||||
|
<label for="benchmark_scoring">
|
||||||
|
Benchmark type:
|
||||||
|
<select id="benchmark_scoring" class="u-full-width" name="benchmark_scoring">
|
||||||
|
<option value="fps" {{ if eq .benchmark.ScoringType "fps" }}selected{{ end }}>Frames per second</option>
|
||||||
|
<option value="ms" {{ if eq .benchmark.ScoringType "ms" }}selected{{ end }}>Frame time</option>
|
||||||
|
<option value="pts" {{ if eq .benchmark.ScoringType "pts" }}selected{{ end }}>Total points</option>
|
||||||
|
</select>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<label for="benchmark_description">
|
||||||
|
Benchmark description:
|
||||||
|
<textarea id="benchmark_description" class="twelve columns" cols="30" rows="10" name="benchmark_description">{{ .benchmark.Description }}</textarea>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<input class="button-primary u-full-width" type="submit" value="Submit">
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ template "footer" . }}
|
@@ -4,7 +4,7 @@
|
|||||||
<h2>Benchmark</h2>
|
<h2>Benchmark</h2>
|
||||||
<a href="/benchmark/create">Add new benchmark</a>
|
<a href="/benchmark/create">Add new benchmark</a>
|
||||||
|
|
||||||
<table class="twelve columns">
|
<table class="twelve columns card-2">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Name</td>
|
<td>Name</td>
|
||||||
|
@@ -3,8 +3,12 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<h2>{{ .benchmark.Name }}</h2>
|
<h2>{{ .benchmark.Name }}</h2>
|
||||||
|
|
||||||
|
<span><a href="/benchmark/{{ .benchmark.ID }}/edit">Edit</a></span>
|
||||||
|
|
||||||
<p>{{ .benchmark.ScoringType }}</p>
|
<p>{{ .benchmark.ScoringType }}</p>
|
||||||
|
|
||||||
|
<p>{{ .benchmark.Description }}</p>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
<h4>Latest Benchmark Results:</h4>
|
<h4>Latest Benchmark Results:</h4>
|
||||||
|
34
templates/hardware/edit.tmpl
Normal file
34
templates/hardware/edit.tmpl
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
{{ template "header" . }}
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<h2>Add new hardware</h2>
|
||||||
|
|
||||||
|
<form class="twelve columns" action="/hardware/{{ .hardware.ID }}/edit" method="POST">
|
||||||
|
<div class="row">
|
||||||
|
<div class="nine columns">
|
||||||
|
<label for="hardware_name">
|
||||||
|
Hardware name:
|
||||||
|
<input id="hardware_name" class="u-full-width" type="text" name="hardware_name" placeholder="EVGA RTX 3080 Ti" value="{{ .hardware.Name }}">
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="three columns">
|
||||||
|
<label for="hardware_type">
|
||||||
|
Hardware type:
|
||||||
|
<select id="hardware_type" class="u-full-width" name="hardware_type">
|
||||||
|
<option value="cpu" {{ if eq .hardware.Type "cpu" }}selected{{ end }}>Processor</option>
|
||||||
|
<option value="mem" {{ if eq .hardware.Type "mem" }}selected{{ end }}>Memory</option>
|
||||||
|
<option value="gpu" {{ if eq .hardware.Type "gpu" }}selected{{ end }}>Graphics Card</option>
|
||||||
|
<option value="ssd" {{ if eq .hardware.Type "ssd" }}selected{{ end }}>Solid State Drive</option>
|
||||||
|
<option value="hdd" {{ if eq .hardware.Type "hdd" }}selected{{ end }}>Hard Drive</option>
|
||||||
|
<option value="nic" {{ if eq .hardware.Type "nic" }}selected{{ end }}>Network Card</option>
|
||||||
|
</select>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<input class="button-primary u-full-width" type="submit" value="Submit">
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ template "footer" . }}
|
@@ -4,7 +4,7 @@
|
|||||||
<h2>Hardware</h2>
|
<h2>Hardware</h2>
|
||||||
<a href="/hardware/create">Add new hardware</a>
|
<a href="/hardware/create">Add new hardware</a>
|
||||||
|
|
||||||
<table class="twelve columns">
|
<table class="twelve columns card-2">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Name</td>
|
<td>Name</td>
|
||||||
|
@@ -3,13 +3,36 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<h2>{{ .hardware.Name }}</h2>
|
<h2>{{ .hardware.Name }}</h2>
|
||||||
|
|
||||||
|
<span><a href="/hardware/{{ .hardware.ID }}/edit">Edit</a></span>
|
||||||
|
|
||||||
<p>{{ .hardware.Type }}</p>
|
<p>{{ .hardware.Type }}</p>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
<h4>Latest Benchmark Results:</h4>
|
<h4>Tests Using This Component:</h4>
|
||||||
|
|
||||||
<p>There are currently no benchmarks recorded using this hardware component.</p>
|
{{ $length := len .hardware.Tests }} {{ if eq $length 0 }}
|
||||||
|
<p>There are currently no tests using this hardware component.</p>
|
||||||
|
{{ else }}
|
||||||
|
<table class="u-full-width card-2">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Test</th>
|
||||||
|
<th># of Benchmarks</th>
|
||||||
|
<th>Last Updated</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{{ range $test := .hardware.Tests }}
|
||||||
|
<tr>
|
||||||
|
<td><a href="/test/{{ $test.ID }}">{{ $test.Name }}</a></td>
|
||||||
|
<td>{{ len $test.Benchmarks }}</td>
|
||||||
|
<td>{{ $test.CreatedAt.Format "01/02/2006 15:04am" }}</td>
|
||||||
|
</tr>
|
||||||
|
{{ end }}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
|
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
<!-- footer -->
|
<!-- footer -->
|
||||||
<nav id="main-footer">
|
<nav id="main-footer">
|
||||||
<p>BLT version {{ .app_version }}</p>
|
<p>BLT version {{ .app_version }} | Built with Go {{ .runtime_version }}</p>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
@@ -9,6 +9,7 @@
|
|||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
|
||||||
<link rel="stylesheet" href="/css/kourend.css">
|
<link rel="stylesheet" href="/css/kourend.css">
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" charset="utf-8"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" charset="utf-8"></script>
|
||||||
|
<script src="/js/kebos.js" charset="utf-8"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
@@ -16,5 +17,5 @@
|
|||||||
{{ template "navbar" . }}
|
{{ template "navbar" . }}
|
||||||
|
|
||||||
<!-- main content -->
|
<!-- main content -->
|
||||||
<div id="main-content" class="container">
|
<div id="main-content" class="container card-5">
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
{{ define "navbar" }}
|
{{ define "navbar" }}
|
||||||
<nav id="main-nav">
|
<nav id="main-nav" class="card-2">
|
||||||
<div class="nav-left">
|
<div class="nav-left">
|
||||||
<h4>BLT</h4>
|
<h4>BLT</h4>
|
||||||
<ul>
|
<ul>
|
||||||
|
53
templates/test/edit.tmpl
Normal file
53
templates/test/edit.tmpl
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
{{ template "header" . }}
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<h2>{{ .title }}</h2>
|
||||||
|
|
||||||
|
<form class="twelve columns" action="/test/{{ .test.ID }}/edit" method="POST">
|
||||||
|
<div class="row">
|
||||||
|
<div class="columns four">
|
||||||
|
<label for="test_hardware">
|
||||||
|
Hardware Component:
|
||||||
|
<select id="test_hardware" class="u-full-width" name="test_hardware">
|
||||||
|
{{ $testHardwareID := .test.Hardware.ID }}
|
||||||
|
{{ range $hw := .hardware }}
|
||||||
|
<option value="{{ $hw.ID }}" {{ if eq $testHardwareID $hw.ID }}selected{{ end }}>{{ $hw.Name }}</option>
|
||||||
|
{{ end }}
|
||||||
|
</select>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="columns eight">
|
||||||
|
<label for="test_name">
|
||||||
|
Test name:
|
||||||
|
<input id="test_name" class="u-full-width" type="text" name="test_name" placeholder="My hardware benchmarking test" value="{{ .test.Name }}">
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="columns twelve">
|
||||||
|
<label for="test_benchmarks">
|
||||||
|
Benchmarks to Test:
|
||||||
|
<select id="test_benchmarks" class="u-full-width" name="test_benchmarks" multiple>
|
||||||
|
{{ $selectedBenchmarks := .selectedBenchmarks }}
|
||||||
|
{{ range $bm := .benchmarks }}
|
||||||
|
<option value="{{ $bm.ID }}" {{ if contains $selectedBenchmarks $bm.StringID }}selected{{ end }}>{{ $bm.Name }}</option>
|
||||||
|
{{ end }}
|
||||||
|
</select>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<label for="test_description">
|
||||||
|
Test description:
|
||||||
|
<textarea id="test_description" class="twelve columns" cols="30" rows="10" name="test_description"></textarea>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<input class="button-primary u-full-width" type="submit" value="Submit">
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ template "footer" . }}
|
@@ -4,7 +4,7 @@
|
|||||||
<h2>Tests</h2>
|
<h2>Tests</h2>
|
||||||
<a href="/test/create">Create a new test</a>
|
<a href="/test/create">Create a new test</a>
|
||||||
|
|
||||||
<table class="twelve columns">
|
<table class="twelve columns card-2">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Title</td>
|
<td>Title</td>
|
||||||
|
@@ -3,11 +3,15 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<h2>{{ .test.Name }}</h2>
|
<h2>{{ .test.Name }}</h2>
|
||||||
|
|
||||||
<p><a href="/hardware/{{ .test.Hardware.ID }}">link to hardware tested.</a></p>
|
<span><a href="/test/{{ .test.ID }}/edit">Edit</a></span>
|
||||||
|
|
||||||
<p>{{ .test.Description }}</p>
|
<p>{{ .test.Description }}</p>
|
||||||
|
|
||||||
<h4>Benchmarks used:</h4>
|
<h4>Test Info:</h4>
|
||||||
|
|
||||||
|
<p>Hardware tested: <a href="/hardware/{{ .test.Hardware.ID }}">{{ .test.Hardware.Name }}</a></p>
|
||||||
|
|
||||||
|
<p>Benchmarks used:</p>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
{{ range $bm := .test.Benchmarks }}
|
{{ range $bm := .test.Benchmarks }}
|
||||||
@@ -17,13 +21,81 @@
|
|||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
<h4>Latest Benchmark Results:</h4>
|
<h4>Add new result:</h4>
|
||||||
|
|
||||||
<p>There are currently no benchmarks recorded in this test.</p>
|
<form id="result-form" class="u-full-width" action="/result/add" method="POST">
|
||||||
|
<div class="row">
|
||||||
|
<div class="columns four">
|
||||||
|
<label for="result_benchmark">
|
||||||
|
Benchmark:
|
||||||
|
<select id="result_benchmark" class="u-full-width" name="result_benchmark">
|
||||||
|
{{ range $bm := .test.Benchmarks }}
|
||||||
|
<option value="{{ $bm.ID }}">{{ $bm.Name }}</option>
|
||||||
|
{{ end }}
|
||||||
|
</select>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="columns two">
|
||||||
|
<label for="result_avg">
|
||||||
|
Average score:
|
||||||
|
<input id="result_avg" class="u-full-width" type="number" name="result_avg" step="0.01" placeholder="0.00">
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="columns two">
|
||||||
|
<label for="result_min">
|
||||||
|
Minimum score:
|
||||||
|
<input id="result_min" class="u-full-width" type="number" name="result_min" step="0.01" placeholder="0.00">
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="columns two">
|
||||||
|
<label for="result_max">
|
||||||
|
Maximum score:
|
||||||
|
<input id="result_max" class="u-full-width" type="number" name="result_max" step="0.01" placeholder="0.00">
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="columns two">
|
||||||
|
<button class="button-primary u-full-width" type="submit" name="button">Submit</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<input type="hidden" name="result_test" value="{{ .test.ID }}">
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<h4>Benchmark Results:</h4>
|
||||||
|
|
||||||
|
{{ $length := len .test.Benchmarks }} {{ if eq $length 0 }}
|
||||||
|
<p>There are currently no benchmarks recorded in this test.</p>
|
||||||
|
{{ else }}
|
||||||
|
<table id="results-table" class="u-full-width card-2" data-test-id="{{ .test.ID }}">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Benchmark</th>
|
||||||
|
<th>Scoring Type</th>
|
||||||
|
<th># of Results</th>
|
||||||
|
<th>Average</th>
|
||||||
|
<th>Minimum</th>
|
||||||
|
<th>Maximum</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{{ range $benchmark := .test.Benchmarks }}
|
||||||
|
<tr data-benchmark-id="{{ $benchmark.ID }}"></tr>
|
||||||
|
{{ end }}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
<p><a href="/test">Back</a></p>
|
<p><a href="/test">Back</a></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<script src="/js/test.js"></script>
|
||||||
|
|
||||||
{{ template "footer" . }}
|
{{ template "footer" . }}
|
||||||
|
9
web/forms/result.go
Normal file
9
web/forms/result.go
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
package forms
|
||||||
|
|
||||||
|
type ResultForm struct {
|
||||||
|
Test int `form:"result_test" validate:"required"`
|
||||||
|
Benchmark int `form:"result_benchmark" validate:"required"`
|
||||||
|
AverageScore float32 `form:"result_avg" validate:"required"`
|
||||||
|
MinimumScore float32 `form:"result_min"`
|
||||||
|
MaximumScore float32 `form:"result_max"`
|
||||||
|
}
|
@@ -4,5 +4,15 @@ type TestForm struct {
|
|||||||
Name string `form:"test_name" validate:"required"`
|
Name string `form:"test_name" validate:"required"`
|
||||||
Description string `form:"test_description"`
|
Description string `form:"test_description"`
|
||||||
Hardware int `form:"test_hardware" validate:"required"`
|
Hardware int `form:"test_hardware" validate:"required"`
|
||||||
Benchmarks []string `form:"test_benchmarks" validate:"required"`
|
Benchmarks []uint `form:"test_benchmarks" validate:"required"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *TestForm) IsBenchmarkSelected(checkID uint) bool {
|
||||||
|
for _, selectedID := range t.Benchmarks {
|
||||||
|
if checkID == selectedID {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
|
10
web/helpers.go
Normal file
10
web/helpers.go
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
package web
|
||||||
|
|
||||||
|
func Contains(slice []string, val string) bool {
|
||||||
|
for _, v := range slice {
|
||||||
|
if v == val {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
@@ -7,5 +7,6 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func CustomVars(data template.Data) {
|
func CustomVars(data template.Data) {
|
||||||
data["app_version"] = app.Version
|
data["app_version"] = app.AppVersion
|
||||||
|
data["runtime_version"] = app.RuntimeVersion
|
||||||
}
|
}
|
||||||
|
@@ -24,6 +24,9 @@ func RegisterRoutes(f *flamego.Flame) {
|
|||||||
f.Post("/create", binding.Form(forms.HardwareForm{}), routes.HardwarePostCreate)
|
f.Post("/create", binding.Form(forms.HardwareForm{}), routes.HardwarePostCreate)
|
||||||
|
|
||||||
f.Get("/{hardware_id}", routes.HardwareGetView)
|
f.Get("/{hardware_id}", routes.HardwareGetView)
|
||||||
|
|
||||||
|
f.Get("/{hardware_id}/edit", routes.HardwareGetEdit)
|
||||||
|
f.Post("/{hardware_id}/edit", binding.Form(forms.HardwareForm{}), routes.HardwarePostEdit)
|
||||||
})
|
})
|
||||||
|
|
||||||
// benchmark routes
|
// benchmark routes
|
||||||
@@ -38,6 +41,9 @@ func RegisterRoutes(f *flamego.Flame) {
|
|||||||
f.Post("/create", binding.Form(forms.BenchmarkForm{}), routes.BenchmarkPostCreate)
|
f.Post("/create", binding.Form(forms.BenchmarkForm{}), routes.BenchmarkPostCreate)
|
||||||
|
|
||||||
f.Get("/{benchmark_id}", routes.BenchmarkGetView)
|
f.Get("/{benchmark_id}", routes.BenchmarkGetView)
|
||||||
|
|
||||||
|
f.Get("/{benchmark_id}/edit", routes.BenchmarkGetEdit)
|
||||||
|
f.Post("/{benchmark_id}/edit", binding.Form(forms.BenchmarkForm{}), routes.BenchmarkPostEdit)
|
||||||
})
|
})
|
||||||
|
|
||||||
// test routes
|
// test routes
|
||||||
@@ -51,6 +57,29 @@ func RegisterRoutes(f *flamego.Flame) {
|
|||||||
f.Get("/create", routes.TestGetCreate)
|
f.Get("/create", routes.TestGetCreate)
|
||||||
f.Post("/create", binding.Form(forms.TestForm{}), routes.TestPostCreate)
|
f.Post("/create", binding.Form(forms.TestForm{}), routes.TestPostCreate)
|
||||||
|
|
||||||
f.Get("/{test_id}", routes.TestGetView)
|
f.Group("/{test_id}", func() {
|
||||||
|
f.Get("", routes.TestGetView)
|
||||||
|
f.Get("/edit", routes.TestGetEdit)
|
||||||
|
f.Post("/edit", binding.Form(forms.TestForm{}), routes.TestPostEdit)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
// result routes
|
||||||
|
f.Group("/result", func() {
|
||||||
|
f.Post("/add", binding.Form(forms.ResultForm{}), routes.ResultPostCreate)
|
||||||
|
})
|
||||||
|
|
||||||
|
// API v1 routes
|
||||||
|
f.Group("/api", func () {
|
||||||
|
f.Group("/v1", func() {
|
||||||
|
f.Group("/benchmark", func() {
|
||||||
|
f.Get("/details", routes.ApiV1BenchmarkDetails)
|
||||||
|
})
|
||||||
|
|
||||||
|
f.Group("/result", func() {
|
||||||
|
f.Post("/add", binding.Form(forms.ResultForm{}), routes.ApiV1ResultAdd)
|
||||||
|
f.Get("/list", routes.ApiV1ResultList)
|
||||||
|
})
|
||||||
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
62
web/routes/api_v1.go
Normal file
62
web/routes/api_v1.go
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
package routes
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log"
|
||||||
|
|
||||||
|
"github.com/flamego/binding"
|
||||||
|
"github.com/flamego/flamego"
|
||||||
|
"github.com/flamego/validator"
|
||||||
|
|
||||||
|
"git.metaunix.net/bitgoblin/blt/models"
|
||||||
|
"git.metaunix.net/bitgoblin/blt/web/forms"
|
||||||
|
)
|
||||||
|
|
||||||
|
func ApiV1BenchmarkDetails(c flamego.Context, r flamego.Render) {
|
||||||
|
// find benchmark ID from request
|
||||||
|
benchmarkID := c.Query("benchmark_id")
|
||||||
|
|
||||||
|
// find benchmark from DB
|
||||||
|
var benchmark models.Benchmark
|
||||||
|
models.DB.First(&benchmark, benchmarkID)
|
||||||
|
|
||||||
|
// return JSON response
|
||||||
|
r.JSON(200, benchmark)
|
||||||
|
}
|
||||||
|
|
||||||
|
func ApiV1ResultAdd(c flamego.Context, form forms.ResultForm, errs binding.Errors, r flamego.Render) {
|
||||||
|
if len(errs) > 0 {
|
||||||
|
var err error
|
||||||
|
switch errs[0].Category {
|
||||||
|
case binding.ErrorCategoryValidation:
|
||||||
|
err = errs[0].Err.(validator.ValidationErrors)[0]
|
||||||
|
default:
|
||||||
|
err = errs[0].Err
|
||||||
|
}
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
result := models.Result{
|
||||||
|
TestID: form.Test,
|
||||||
|
BenchmarkID: form.Benchmark,
|
||||||
|
AverageScore: form.AverageScore,
|
||||||
|
MinimumScore: form.MinimumScore,
|
||||||
|
MaximumScore: form.MaximumScore,
|
||||||
|
}
|
||||||
|
|
||||||
|
_ = models.DB.Create(&result)
|
||||||
|
|
||||||
|
r.JSON(200, "success")
|
||||||
|
}
|
||||||
|
|
||||||
|
func ApiV1ResultList(c flamego.Context, r flamego.Render) {
|
||||||
|
// find benchmark and test IDs from request
|
||||||
|
benchmarkID := c.Query("benchmark_id")
|
||||||
|
testID := c.Query("test_id")
|
||||||
|
|
||||||
|
// find results from the DB that match the benchmark and test
|
||||||
|
var results []models.Result
|
||||||
|
models.DB.Where("test_id = ? AND benchmark_id = ?", testID, benchmarkID).Find(&results)
|
||||||
|
|
||||||
|
// return JSON response
|
||||||
|
r.JSON(200, results)
|
||||||
|
}
|
@@ -64,3 +64,44 @@ func BenchmarkPostCreate(c flamego.Context, form forms.BenchmarkForm, errs bindi
|
|||||||
|
|
||||||
c.Redirect(fmt.Sprintf("/benchmark/%d", benchmark.ID))
|
c.Redirect(fmt.Sprintf("/benchmark/%d", benchmark.ID))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func BenchmarkGetEdit(c flamego.Context, t template.Template, data template.Data) {
|
||||||
|
// find benchmark ID from request
|
||||||
|
benchmarkID := c.Param("benchmark_id")
|
||||||
|
|
||||||
|
// find benchmark from DB
|
||||||
|
var benchmark models.Benchmark
|
||||||
|
models.DB.First(&benchmark, benchmarkID)
|
||||||
|
data["benchmark"] = benchmark
|
||||||
|
|
||||||
|
data["title"] = "Editing Benchmark"
|
||||||
|
t.HTML(http.StatusOK, "benchmark/edit")
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkPostEdit(c flamego.Context, form forms.BenchmarkForm, errs binding.Errors) {
|
||||||
|
if len(errs) > 0 {
|
||||||
|
var err error
|
||||||
|
switch errs[0].Category {
|
||||||
|
case binding.ErrorCategoryValidation:
|
||||||
|
err = errs[0].Err.(validator.ValidationErrors)[0]
|
||||||
|
default:
|
||||||
|
err = errs[0].Err
|
||||||
|
}
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// find benchmark ID from request
|
||||||
|
benchmarkID := c.Param("benchmark_id")
|
||||||
|
|
||||||
|
// find benchmark from DB
|
||||||
|
var benchmark models.Benchmark
|
||||||
|
models.DB.First(&benchmark, benchmarkID)
|
||||||
|
|
||||||
|
benchmark.Name = form.Name
|
||||||
|
benchmark.ScoringType = form.ScoringType
|
||||||
|
benchmark.Description = form.Description
|
||||||
|
|
||||||
|
models.DB.Save(&benchmark)
|
||||||
|
|
||||||
|
c.Redirect(fmt.Sprintf("/benchmark/%d", benchmark.ID))
|
||||||
|
}
|
||||||
|
@@ -30,7 +30,7 @@ func HardwareGetView(c flamego.Context, t template.Template, data template.Data)
|
|||||||
|
|
||||||
// find hardware from DB
|
// find hardware from DB
|
||||||
var hardware models.Hardware
|
var hardware models.Hardware
|
||||||
models.DB.First(&hardware, hardwareID)
|
models.DB.Preload("Tests.Benchmarks").First(&hardware, hardwareID)
|
||||||
data["hardware"] = hardware
|
data["hardware"] = hardware
|
||||||
|
|
||||||
data["title"] = hardware.Name
|
data["title"] = hardware.Name
|
||||||
@@ -63,3 +63,43 @@ func HardwarePostCreate(c flamego.Context, form forms.HardwareForm, errs binding
|
|||||||
|
|
||||||
c.Redirect(fmt.Sprintf("/hardware/%d", hardware.ID))
|
c.Redirect(fmt.Sprintf("/hardware/%d", hardware.ID))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func HardwareGetEdit(c flamego.Context, t template.Template, data template.Data) {
|
||||||
|
// find hardware ID from request
|
||||||
|
hardwareID := c.Param("hardware_id")
|
||||||
|
|
||||||
|
// find hardware from DB
|
||||||
|
var hardware models.Hardware
|
||||||
|
models.DB.Preload("Tests.Benchmarks").First(&hardware, hardwareID)
|
||||||
|
data["hardware"] = hardware
|
||||||
|
|
||||||
|
data["title"] = "Edit Hardware"
|
||||||
|
t.HTML(http.StatusOK, "hardware/edit")
|
||||||
|
}
|
||||||
|
|
||||||
|
func HardwarePostEdit(c flamego.Context, form forms.HardwareForm, errs binding.Errors) {
|
||||||
|
if len(errs) > 0 {
|
||||||
|
var err error
|
||||||
|
switch errs[0].Category {
|
||||||
|
case binding.ErrorCategoryValidation:
|
||||||
|
err = errs[0].Err.(validator.ValidationErrors)[0]
|
||||||
|
default:
|
||||||
|
err = errs[0].Err
|
||||||
|
}
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// find hardware ID from request
|
||||||
|
hardwareID := c.Param("hardware_id")
|
||||||
|
|
||||||
|
// find hardware from DB
|
||||||
|
var hardware models.Hardware
|
||||||
|
models.DB.Preload("Tests.Benchmarks").First(&hardware, hardwareID)
|
||||||
|
|
||||||
|
hardware.Name = form.Name
|
||||||
|
hardware.Type = form.Type
|
||||||
|
|
||||||
|
models.DB.Save(&hardware)
|
||||||
|
|
||||||
|
c.Redirect(fmt.Sprintf("/hardware/%d", hardware.ID))
|
||||||
|
}
|
||||||
|
38
web/routes/result.go
Normal file
38
web/routes/result.go
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
package routes
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"log"
|
||||||
|
|
||||||
|
"github.com/flamego/binding"
|
||||||
|
"github.com/flamego/flamego"
|
||||||
|
"github.com/flamego/validator"
|
||||||
|
|
||||||
|
"git.metaunix.net/bitgoblin/blt/models"
|
||||||
|
"git.metaunix.net/bitgoblin/blt/web/forms"
|
||||||
|
)
|
||||||
|
|
||||||
|
func ResultPostCreate(c flamego.Context, form forms.ResultForm, errs binding.Errors) {
|
||||||
|
if len(errs) > 0 {
|
||||||
|
var err error
|
||||||
|
switch errs[0].Category {
|
||||||
|
case binding.ErrorCategoryValidation:
|
||||||
|
err = errs[0].Err.(validator.ValidationErrors)[0]
|
||||||
|
default:
|
||||||
|
err = errs[0].Err
|
||||||
|
}
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
result := models.Result{
|
||||||
|
TestID: form.Test,
|
||||||
|
BenchmarkID: form.Benchmark,
|
||||||
|
AverageScore: form.AverageScore,
|
||||||
|
MinimumScore: form.MinimumScore,
|
||||||
|
MaximumScore: form.MaximumScore,
|
||||||
|
}
|
||||||
|
|
||||||
|
_ = models.DB.Create(&result)
|
||||||
|
|
||||||
|
c.Redirect(fmt.Sprintf("/test/%d", result.TestID))
|
||||||
|
}
|
@@ -30,7 +30,7 @@ func TestGetView(c flamego.Context, t template.Template, data template.Data) {
|
|||||||
|
|
||||||
// find hardware from DB
|
// find hardware from DB
|
||||||
var test models.Test
|
var test models.Test
|
||||||
models.DB.Preload("Hardware").Preload("Benchmarks").First(&test, testID)
|
models.DB.Preload("Hardware").Preload("Benchmarks").Preload("Results.Benchmark").First(&test, testID)
|
||||||
data["test"] = test
|
data["test"] = test
|
||||||
|
|
||||||
data["title"] = test.Name
|
data["title"] = test.Name
|
||||||
@@ -81,3 +81,74 @@ func TestPostCreate(c flamego.Context, form forms.TestForm, errs binding.Errors)
|
|||||||
|
|
||||||
c.Redirect(fmt.Sprintf("/test/%d", test.ID))
|
c.Redirect(fmt.Sprintf("/test/%d", test.ID))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestGetEdit(c flamego.Context, t template.Template, data template.Data) {
|
||||||
|
// find test in DB
|
||||||
|
testID := c.Param("test_id")
|
||||||
|
var test models.Test
|
||||||
|
models.DB.Preload("Hardware").Preload("Benchmarks").First(&test, testID)
|
||||||
|
data["test"] = test
|
||||||
|
|
||||||
|
// add hardware components to template
|
||||||
|
var hardware []models.Hardware
|
||||||
|
models.DB.Find(&hardware)
|
||||||
|
data["hardware"] = hardware
|
||||||
|
|
||||||
|
// add benchmarks to template
|
||||||
|
var benchmarks []models.Benchmark
|
||||||
|
models.DB.Find(&benchmarks)
|
||||||
|
data["benchmarks"] = benchmarks
|
||||||
|
|
||||||
|
// determine which benchmarks are selected in a test
|
||||||
|
selectedBenchmarks := test.SelectedBenchmarks()
|
||||||
|
data["selectedBenchmarks"] = selectedBenchmarks
|
||||||
|
|
||||||
|
data["title"] = fmt.Sprintf("Editing Test: %s", test.Name)
|
||||||
|
t.HTML(http.StatusOK, "test/edit")
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPostEdit(c flamego.Context, form forms.TestForm, errs binding.Errors) {
|
||||||
|
if len(errs) > 0 {
|
||||||
|
var err error
|
||||||
|
switch errs[0].Category {
|
||||||
|
case binding.ErrorCategoryValidation:
|
||||||
|
err = errs[0].Err.(validator.ValidationErrors)[0]
|
||||||
|
default:
|
||||||
|
err = errs[0].Err
|
||||||
|
}
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// find test ID from request
|
||||||
|
testID := c.Param("test_id")
|
||||||
|
|
||||||
|
// find hardware from DB
|
||||||
|
var test models.Test
|
||||||
|
models.DB.Preload("Hardware").Preload("Benchmarks").First(&test, testID)
|
||||||
|
|
||||||
|
test.Name = form.Name
|
||||||
|
test.Description = form.Description
|
||||||
|
test.HardwareID = form.Hardware
|
||||||
|
|
||||||
|
// bind benchmarks to test that aren't already associated
|
||||||
|
for _, b := range form.Benchmarks {
|
||||||
|
if ! test.IsBenchmarkSelected(b) {
|
||||||
|
var benchmark models.Benchmark
|
||||||
|
models.DB.First(&benchmark, b) // find benchmark
|
||||||
|
models.DB.Model(&test).Association("Benchmarks").Append(&benchmark)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// removed associated benchmarks that weren't in the form
|
||||||
|
for _, b := range test.Benchmarks {
|
||||||
|
if ! form.IsBenchmarkSelected(b.ID) {
|
||||||
|
var benchmark models.Benchmark
|
||||||
|
models.DB.First(&benchmark, b) // find benchmark
|
||||||
|
models.DB.Model(&test).Association("Benchmarks").Delete(&benchmark)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
models.DB.Save(&test)
|
||||||
|
|
||||||
|
c.Redirect(fmt.Sprintf("/test/%d", test.ID))
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user