1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-08-06 19:44:01 +08:00
Files
2019-08-23 14:26:20 -07:00

123 lines
2.6 KiB
Go

package main
import (
"flag"
"fmt"
"io/ioutil"
"log"
"os"
"os/exec"
"path"
"testing"
"github.com/ipfs/go-ipfs/thirdparty/unit"
config "github.com/ipfs/go-ipfs-config"
random "github.com/jbenet/go-random"
)
var (
debug = flag.Bool("debug", false, "direct ipfs output to console")
online = flag.Bool("online", false, "run the benchmarks with a running daemon")
)
func main() {
flag.Parse()
if err := compareResults(); err != nil {
log.Fatal(err)
}
}
func compareResults() error {
var amount unit.Information
for amount = 10 * unit.MB; amount > 0; amount = amount * 2 {
if results, err := benchmarkAdd(int64(amount)); err != nil { // TODO compare
return err
} else {
log.Println(amount, "\t", results)
}
}
return nil
}
func benchmarkAdd(amount int64) (*testing.BenchmarkResult, error) {
var benchmarkError error
results := testing.Benchmark(func(b *testing.B) {
b.SetBytes(amount)
for i := 0; i < b.N; i++ {
b.StopTimer()
tmpDir, err := ioutil.TempDir("", "")
if err != nil {
benchmarkError = err
b.Fatal(err)
}
defer os.RemoveAll(tmpDir)
env := append(
[]string{fmt.Sprintf("%s=%s", config.EnvDir, path.Join(tmpDir, config.DefaultPathName))}, // first in order to override
os.Environ()...,
)
setupCmd := func(cmd *exec.Cmd) {
cmd.Env = env
if *debug {
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
}
}
initCmd := exec.Command("ipfs", "init", "-b=2048")
setupCmd(initCmd)
if err := initCmd.Run(); err != nil {
benchmarkError = err
b.Fatal(err)
}
const seed = 1
f, err := ioutil.TempFile("", "")
if err != nil {
benchmarkError = err
b.Fatal(err)
}
defer os.Remove(f.Name())
if err := random.WritePseudoRandomBytes(amount, f, seed); err != nil {
benchmarkError = err
b.Fatal(err)
}
if err := f.Close(); err != nil {
benchmarkError = err
b.Fatal(err)
}
func() {
// FIXME online mode isn't working. client complains that it cannot open leveldb
if *online {
daemonCmd := exec.Command("ipfs", "daemon")
setupCmd(daemonCmd)
if err := daemonCmd.Start(); err != nil {
benchmarkError = err
b.Fatal(err)
}
defer func() {
_ = daemonCmd.Process.Signal(os.Interrupt)
_ = daemonCmd.Wait()
}()
}
b.StartTimer()
addCmd := exec.Command("ipfs", "add", f.Name())
setupCmd(addCmd)
if err := addCmd.Run(); err != nil {
benchmarkError = err
b.Fatal(err)
}
b.StopTimer()
}()
}
})
if benchmarkError != nil {
return nil, benchmarkError
}
return &results, nil
}