Awesome Go

datacounter

CategoryMiscellaneous
SubcategoryUncategorized
Stars0

Go counters for readers/writer/http.ResponseWriter

About datacounter

Datacounter

Golang counters for readers/writers.

Build Status GoDoc

Examples

ReaderCounter

buf := bytes.Buffer{}
buf.Write(data)
counter := datacounter.NewReaderCounter(&buf)

io.Copy(ioutil.Discard, counter)
if counter.Count() != dataLen {
	t.Fatalf("count mismatch len of test data: %d != %d", counter.Count(), len(data))
}

WriterCounter

buf := bytes.Buffer{}
counter := datacounter.NewWriterCounter(&buf)

counter.Write(data)
if counter.Count() != dataLen {
	t.Fatalf("count mismatch len of test data: %d != %d", counter.Count(), len(data))
}

http.ResponseWriter Counter

handler := func(w http.ResponseWriter, r *http.Request) {
	w.Write(data)
}

req, err := http.NewRequest("GET", "http://example.com/foo", nil)
if err != nil {
	t.Fatal(err)
}

w := httptest.NewRecorder()
counter := datacounter.NewResponseWriterCounter(w)

handler(counter, req)
if counter.Count() != dataLen {
	t.Fatalf("count mismatch len of test data: %d != %d", counter.Count(), len(data))
}

Frequently Asked Questions

What is datacounter?

datacounter is a Miscellaneous library for the Go programming language. Go counters for readers/writer/http.ResponseWriter

How do I install datacounter?

Install datacounter with the Go module system using `go get miolini/datacounter`. Check the repository for the current installation instructions.

What category does datacounter belong to?

datacounter is listed under Miscellaneous, specifically Uncategorized.

← Back to Uncategorized