go summary_test

2026-08-30 浏览 (1)

summary_test.go 源码

// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
// For more tutorials  : https://learngoprogramming.com
// In-person training  : https://www.linkedin.com/in/inancgumus/
// Follow me on twitter: https://twitter.com/inancgumus

package report_test

import (
	"testing"

	"github.com/inancgumus/learngo/logparser/testing/report"
)

func TestSummaryTotal(t *testing.T) {
	p := newParser("a.com 1 2")
	p.Parse("b.com 3 4")

	s := p.Summarize()

	want := report.Result{Domain: "", Visits: 4, TimeSpent: 6}
	if got := s.Total(); want != got {
		t.Errorf("want: %+v; got: %+v", want, got)
	}
}

func TestSummaryIterator(t *testing.T) {
	p := newParser("a.com 1 2")
	p.Parse("a.com 3 4")
	p.Parse("b.com 5 6")

	s := p.Summarize()
	next, cur := s.Iterator()

	wants := []report.Result{
		{Domain: "a.com", Visits: 4, TimeSpent: 6},
		{Domain: "b.com", Visits: 5, TimeSpent: 6},
	}

	for _, want := range wants {
		t.Run(want.Domain, func(t *testing.T) {
			if got := next(); !got {
				t.Errorf("next(): want: %t; got: %t", true, got)
			}
			if got := cur(); want != got {
				t.Errorf("cur(): want: %+v; got: %+v", want, got)
			}
		})
	}
}

你可能感兴趣的文章

go result

go parser_test

go summary

go parser

  • 所属分类: 后端技术
  • 本文标签: golang
  • 版权声明: 本文链接 https://seaxiang.com/blog/m9aocXwx