mirror of
https://github.com/nabbar/golib.git
synced 2025-12-24 11:51:02 +08:00
- FIX: potential CWE-400 with bufio.ReadBytes & bufio.ReadSlices, with no limited read buffer - ADD: test to check overflow buffer with discard or error - REFACTOR: all buffering package, parsing process - UPDATE: doc, examples, test following changes - OPTIMIZE: rework code to optimize process - REWORK: benchmark to check benefice of optimization - FIX: wording error Package IOUtils/Multi: - REWORK: re-design all package to allow sequential/parallel mode - UPDATE: package with adaptive mode to allow switch automaticly between sequential and parallel mode following measurment of sample - OPTIMIZE: code to maximize bandwith and reduce time of write - UPDATE: documentation, test and comments - REWORK: testing organization and benchmark aggregation Package HttpServer: - FIX: bug with dial addr rewrite for healtcheck & testing PortUse Package Logger/HookFile: - FIX: bug with race condition on aggregator counter file Other: - Bump dependencies - FIX: format / import file
71 lines
2.9 KiB
Go
71 lines
2.9 KiB
Go
/*
|
|
* MIT License
|
|
*
|
|
* Copyright (c) 2024 Nicolas JUHEL
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*
|
|
*
|
|
*/
|
|
|
|
// Package ioprogress_test provides comprehensive BDD-style tests for the ioprogress package.
|
|
//
|
|
// Test Framework: Uses Ginkgo v2 for BDD-style test organization and Gomega for expressive
|
|
// assertions. This combination provides clear, readable test specifications that document
|
|
// package behavior.
|
|
//
|
|
// Test Coverage:
|
|
// - Reader operations: 22 specs covering Read(), callbacks, EOF, Reset(), Close()
|
|
// - Writer operations: 20 specs covering Write(), callbacks, EOF, Reset(), Close()
|
|
// - Edge cases: nil callbacks, empty data, large data, zero-byte operations
|
|
// - Concurrency: thread-safe callback registration during I/O operations
|
|
// - Total: 42 specs with 84.7% code coverage
|
|
//
|
|
// Test Organization: Tests follow BDD hierarchical structure (Describe → Context → It)
|
|
// for clear documentation of expected behavior. Each test is independent and follows the
|
|
// AAA pattern (Arrange, Act, Assert).
|
|
//
|
|
// Running Tests:
|
|
//
|
|
// go test ./... # Basic test run
|
|
// go test -cover ./... # With coverage report
|
|
// CGO_ENABLED=1 go test -race ./... # With race detector
|
|
// ginkgo -v # Using Ginkgo CLI (verbose)
|
|
//
|
|
// Race Detection: All tests pass with -race flag, validating lock-free thread safety
|
|
// using atomic operations throughout the implementation.
|
|
package ioprogress_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
// TestIoProgress is the entry point for the Ginkgo test suite.
|
|
//
|
|
// This function registers the Ginkgo fail handler and runs all specs defined in
|
|
// reader_test.go and writer_test.go. The suite name "IOProgress Suite" appears
|
|
// in test output for identification.
|
|
func TestIoProgress(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "IOProgress Suite")
|
|
}
|