mirror of
				https://github.com/ClusterCockpit/cc-backend
				synced 2025-10-30 23:45:06 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			80 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (C) 2022 NHR@FAU, University Erlangen-Nuremberg.
 | |
| // All rights reserved.
 | |
| // Use of this source code is governed by a MIT-style
 | |
| // license that can be found in the LICENSE file.
 | |
| package repository
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"path/filepath"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/ClusterCockpit/cc-backend/pkg/log"
 | |
| 	"github.com/ClusterCockpit/cc-backend/pkg/units"
 | |
| 	_ "github.com/mattn/go-sqlite3"
 | |
| )
 | |
| 
 | |
| func setupRepo(t *testing.T) *JobRepository {
 | |
| 	log.Init("info", true)
 | |
| 	tmpdir := t.TempDir()
 | |
| 	dbfilepath := filepath.Join(tmpdir, "test.db")
 | |
| 	err := MigrateDB("sqlite3", dbfilepath)
 | |
| 	if err != nil {
 | |
| 		t.Fatal(err)
 | |
| 	}
 | |
| 	Connect("sqlite3", dbfilepath)
 | |
| 	return GetJobRepository()
 | |
| }
 | |
| 
 | |
| func TestNormalizeFactor(t *testing.T) {
 | |
| 	// var us string
 | |
| 	s := []float64{2890031237, 23998994567, 389734042344, 390349424345}
 | |
| 	// r := []float64{3, 24, 390, 391}
 | |
| 
 | |
| 	total := 0.0
 | |
| 	for _, number := range s {
 | |
| 		total += number
 | |
| 	}
 | |
| 	avg := total / float64(len(s))
 | |
| 
 | |
| 	fmt.Printf("AVG: %e\n", avg)
 | |
| 	f, e := getNormalizationFactor(avg)
 | |
| 
 | |
| 	fmt.Printf("Factor %e Count %d\n", f, e)
 | |
| 
 | |
| 	np := units.NewPrefix("")
 | |
| 
 | |
| 	fmt.Printf("Prefix %e Short %s\n", float64(np), np.Prefix())
 | |
| 
 | |
| 	p := units.NewPrefixFromFactor(np, e)
 | |
| 
 | |
| 	if p.Prefix() != "G" {
 | |
| 		t.Errorf("Failed Prefix or unit: Want G, Got %s", p.Prefix())
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestNormalizeKeep(t *testing.T) {
 | |
| 	s := []float64{3.0, 24.0, 390.0, 391.0}
 | |
| 
 | |
| 	total := 0.0
 | |
| 	for _, number := range s {
 | |
| 		total += number
 | |
| 	}
 | |
| 	avg := total / float64(len(s))
 | |
| 
 | |
| 	fmt.Printf("AVG: %e\n", avg)
 | |
| 	f, e := getNormalizationFactor(avg)
 | |
| 
 | |
| 	fmt.Printf("Factor %e Count %d\n", f, e)
 | |
| 
 | |
| 	np := units.NewPrefix("G")
 | |
| 
 | |
| 	fmt.Printf("Prefix %e Short %s\n", float64(np), np.Prefix())
 | |
| 
 | |
| 	p := units.NewPrefixFromFactor(np, e)
 | |
| 
 | |
| 	if p.Prefix() != "G" {
 | |
| 		t.Errorf("Failed Prefix or unit: Want G, Got %s", p.Prefix())
 | |
| 	}
 | |
| }
 |