1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
|
// Tideland Go Library - Audit - Unit Tests
//
// Copyright (C) 2012-2017 Frank Mueller / Tideland / Oldenburg / Germany
//
// All rights reserved. Use of this source code is governed
// by the new BSD license.
package audit_test
//--------------------
// IMPORTS
//--------------------
import (
"errors"
"io"
"strings"
"testing"
"time"
"github.com/tideland/golib/audit"
)
//--------------------
// TESTS
//--------------------
// TestAssertTrue tests the True() assertion.
func TestAssertTrue(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
successfulAssert.True(true, "should not fail")
failingAssert.True(false, "should fail and be logged")
}
// TestAssertFalse tests the False() assertion.
func TestAssertFalse(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
successfulAssert.False(false, "should not fail")
failingAssert.False(true, "should fail and be logged")
}
// TestAssertNil tests the Nil() assertion.
func TestAssertNil(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
successfulAssert.Nil(nil, "should not fail")
failingAssert.Nil("not nil", "should fail and be logged")
}
// TestAssertNotNil tests the NotNil() assertion.
func TestAssertNotNil(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
successfulAssert.NotNil("not nil", "should not fail")
failingAssert.NotNil(nil, "should fail and be logged")
}
// TestAssertEqual tests the Equal() assertion.
func TestAssertEqual(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
m := map[string]int{"one": 1, "two": 2, "three": 3}
now := time.Now()
nowStr := now.Format(time.RFC3339Nano)
nowParsedA, err := time.Parse(time.RFC3339Nano, nowStr)
nowParsedB, err := time.Parse(time.RFC3339Nano, nowStr)
successfulAssert.Nil(err, "should not fail")
successfulAssert.Equal(nowParsedA, nowParsedB, "should not fail")
successfulAssert.Equal(nil, nil, "should not fail")
successfulAssert.Equal(true, true, "should not fail")
successfulAssert.Equal(1, 1, "should not fail")
successfulAssert.Equal("foo", "foo", "should not fail")
successfulAssert.Equal(map[string]int{"one": 1, "three": 3, "two": 2}, m, "should not fail")
failingAssert.Equal("one", 1, "should fail and be logged")
failingAssert.Equal("two", "2", "should fail and be logged")
}
// TestAssertDifferent tests the Different() assertion.
func TestAssertDifferent(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
m := map[string]int{"one": 1, "two": 2, "three": 3}
successfulAssert.Different(nil, "nil", "should not fail")
successfulAssert.Different("true", true, "should not fail")
successfulAssert.Different(1, 2, "should not fail")
successfulAssert.Different("foo", "bar", "should not fail")
successfulAssert.Different(map[string]int{"three": 3, "two": 2}, m, "should not fail")
failingAssert.Different("one", "one", "should fail and be logged")
failingAssert.Different(2, 2, "should fail and be logged")
}
// TestAssertAbout tests the About() assertion.
func TestAssertAbout(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
successfulAssert.About(1.0, 1.0, 0.0, "equal, no extend")
successfulAssert.About(1.0, 1.0, 0.1, "equal, little extend")
successfulAssert.About(0.9, 1.0, 0.1, "different, within bounds of extent")
successfulAssert.About(1.1, 1.0, 0.1, "different, within bounds of extent")
failingAssert.About(0.8, 1.0, 0.1, "different, out of bounds of extent")
failingAssert.About(1.2, 1.0, 0.1, "different, out of bounds of extent")
}
// TestAssertRange tests the Range() assertion.
func TestAssertRange(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
now := time.Now()
successfulAssert.Range(byte(9), byte(1), byte(22), "byte in range")
successfulAssert.Range(9, 1, 22, "int in range")
successfulAssert.Range(9.0, 1.0, 22.0, "float64 in range")
successfulAssert.Range('f', 'a', 'z', "rune in range")
successfulAssert.Range("foo", "a", "zzzzz", "string in range")
successfulAssert.Range(now, now.Add(-time.Hour), now.Add(time.Hour), "time in range")
successfulAssert.Range(time.Minute, time.Second, time.Hour, "duration in range")
successfulAssert.Range([]int{1, 2, 3}, 1, 10, "slice length in range")
successfulAssert.Range([3]int{1, 2, 3}, 1, 10, "array length in range")
successfulAssert.Range(map[int]int{3: 1, 2: 2, 1: 3}, 1, 10, "map length in range")
failingAssert.Range(byte(1), byte(10), byte(20), "byte out of range")
failingAssert.Range(1, 10, 20, "int out of range")
failingAssert.Range(1.0, 10.0, 20.0, "float64 out of range")
failingAssert.Range('a', 'x', 'z', "rune out of range")
failingAssert.Range("aaa", "uuuuu", "zzzzz", "string out of range")
failingAssert.Range(now, now.Add(time.Minute), now.Add(time.Hour), "time out of range")
failingAssert.Range(time.Second, time.Minute, time.Hour, "duration in range")
failingAssert.Range([]int{1, 2, 3}, 5, 10, "slice length out of range")
failingAssert.Range([3]int{1, 2, 3}, 5, 10, "array length out of range")
failingAssert.Range(map[int]int{3: 1, 2: 2, 1: 3}, 5, 10, "map length out of range")
}
// TestAssertContents tests the Contents() assertion.
func TestAssertContents(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
successfulAssert.Contents("bar", "foobarbaz")
successfulAssert.Contents(4711, []int{1, 2, 3, 4711, 5, 6, 7, 8, 9})
failingAssert.Contents(4711, "12345-4711-67890")
failingAssert.Contents(4711, "foo")
failingAssert.Contents(4711, []interface{}{1, "2", 3, "4711", 5, 6, 7, 8, 9})
successfulAssert.Contents("4711", []interface{}{1, "2", 3, "4711", 5, 6, 7, 8, 9})
failingAssert.Contents("foobar", []byte("the quick brown fox jumps over the lazy dog"))
}
// TestAssertContentsPrint test the visualization of failing content tests.
func TestAssertContentsPrint(t *testing.T) {
assert := audit.NewTestingAssertion(t, false)
assert.Logf("printing of failing content tests")
assert.Contents("foobar", []byte("the quick brown fox jumps over the lazy dog"), "test fails but passes, just visualization")
assert.Contents([]byte("foobar"), []byte("the quick brown ..."), "test fails but passes, just visualization")
}
// TestOffsetPrint test the correct visualization when printing
// with offset.
func TestOffsetPrint(t *testing.T) {
assert := audit.NewTestingAssertion(t, false)
// Log should reference line below (167).
failWithOffset(assert, "172")
}
// TestAssertSubstring tests the Substring() assertion.
func TestAssertSubstring(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
successfulAssert.Substring("is assert", "this is assert test", "should not fail")
successfulAssert.Substring("test", "this is 1 test", "should not fail")
failingAssert.Substring("foo", "this is assert test", "should fail and be logged")
failingAssert.Substring("this is assert test", "this is assert test", "should fail and be logged")
}
// TestAssertCase tests the Case() assertion.
func TestAssertCase(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
successfulAssert.Case("FOO", true, "is all uppercase")
successfulAssert.Case("foo", false, "is all lowercase")
failingAssert.Case("Foo", true, "is mixed case")
failingAssert.Case("Foo", false, "is mixed case")
}
// TestAssertMatch tests the Match() assertion.
func TestAssertMatch(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
successfulAssert.Match("this is assert test", "this.*test", "should not fail")
successfulAssert.Match("this is 1 test", "this is [0-9] test", "should not fail")
failingAssert.Match("this is assert test", "foo", "should fail and be logged")
failingAssert.Match("this is assert test", "this*test", "should fail and be logged")
}
// TestAssertErrorMatch tests the ErrorMatch() assertion.
func TestAssertErrorMatch(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
err := errors.New("oops, an error")
successfulAssert.ErrorMatch(err, "oops, an error", "should not fail")
successfulAssert.ErrorMatch(err, "oops,.*", "should not fail")
failingAssert.ErrorMatch(err, "foo", "should fail and be logged")
}
// TestAssertImplementor tests the Implementor() assertion.
func TestAssertImplementor(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
var err error
var w io.Writer
successfulAssert.Implementor(errors.New("error test"), &err, "should not fail")
failingAssert.Implementor("string test", &err, "should fail and be logged")
failingAssert.Implementor(errors.New("error test"), &w, "should fail and be logged")
}
// TestAssertAssignable tests the Assignable() assertion.
func TestAssertAssignable(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
successfulAssert.Assignable(1, 5, "should not fail")
failingAssert.Assignable("one", 5, "should fail and be logged")
}
// TestAssertUnassignable tests the Unassignable() assertion.
func TestAssertUnassignable(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
successfulAssert.Unassignable("one", 5, "should not fail")
failingAssert.Unassignable(1, 5, "should fail and be logged")
}
// TestAssertEmpty tests the Empty() assertion.
func TestAssertEmpty(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
successfulAssert.Empty("", "should not fail")
successfulAssert.Empty([]bool{}, "should also not fail")
failingAssert.Empty("not empty", "should fail and be logged")
failingAssert.Empty([3]int{1, 2, 3}, "should also fail and be logged")
failingAssert.Empty(true, "illegal type has to fail")
}
// TestAssertNotEmpty tests the NotEmpty() assertion.
func TestAssertNotEmpty(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
successfulAssert.NotEmpty("not empty", "should not fail")
successfulAssert.NotEmpty([3]int{1, 2, 3}, "should also not fail")
failingAssert.NotEmpty("", "should fail and be logged")
failingAssert.NotEmpty([]int{}, "should also fail and be logged")
failingAssert.NotEmpty(true, "illegal type has to fail")
}
// TestAssertLength tests the Length() assertion.
func TestAssertLength(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
successfulAssert.Length("", 0, "should not fail")
successfulAssert.Length([]bool{true, false}, 2, "should also not fail")
failingAssert.Length("not empty", 0, "should fail and be logged")
failingAssert.Length([3]int{1, 2, 3}, 10, "should also fail and be logged")
failingAssert.Length(true, 1, "illegal type has to fail")
}
// TestAssertPanics tests the Panics() assertion.
func TestAssertPanics(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
successfulAssert.Panics(func() { panic("ouch") }, "should panic")
failingAssert.Panics(func() { _ = 1 + 1 }, "should not panic")
}
// TestAssertPathExists tests the PathExists() assertion.
func TestAssertPathExists(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
td := audit.NewTempDir(successfulAssert)
successfulAssert.NotNil(td)
defer td.Restore()
successfulAssert.PathExists(td.String(), "temporary directory exists")
failingAssert.PathExists("/this/path/will/hopefully/not/exist", "illegal path")
}
// TestAssertWait tests the wait testing.
func TestAssertWait(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
sigc := audit.MakeSigChan()
go func() {
time.Sleep(50 * time.Millisecond)
sigc <- true
}()
successfulAssert.Wait(sigc, true, 100*time.Millisecond, "should be true")
go func() {
time.Sleep(50 * time.Millisecond)
sigc <- false
}()
failingAssert.Wait(sigc, true, 100*time.Millisecond, "should be false")
go func() {
time.Sleep(200 * time.Millisecond)
sigc <- true
}()
failingAssert.Wait(sigc, true, 100*time.Millisecond, "should timeout")
}
// TestAssertWaitTested tests the wait tested testing.
func TestAssertWaitTested(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
tester := func(v interface{}) error {
b, ok := v.(bool)
if !ok || b == false {
return errors.New("illegal value")
}
return nil
}
sigc := audit.MakeSigChan()
go func() {
time.Sleep(50 * time.Millisecond)
sigc <- true
}()
successfulAssert.WaitTested(sigc, tester, 100*time.Millisecond, "should be true")
go func() {
time.Sleep(50 * time.Millisecond)
sigc <- false
}()
failingAssert.WaitTested(sigc, tester, 100*time.Millisecond, "should be false")
go func() {
time.Sleep(200 * time.Millisecond)
sigc <- true
}()
failingAssert.WaitTested(sigc, tester, 100*time.Millisecond, "should timeout")
}
// TestAssertRetry tests the retry testing.
func TestAssertRetry(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
i := 0
successfulAssert.Retry(func() bool {
i++
return i == 5
}, 10, 10*time.Millisecond, "should succeed")
failingAssert.Retry(func() bool { return false }, 10, 10*time.Millisecond, "should fail")
}
// TestAssertFail tests the fail testing.
func TestAssertFail(t *testing.T) {
failingAssert := failingAssertion(t)
failingAssert.Fail("this should fail")
}
// TestTestingAssertion tests the testing assertion.
func TestTestingAssertion(t *testing.T) {
assert := audit.NewTestingAssertion(t, false)
foo := func() {}
bar := 4711
assert.Assignable(47, 11, "should not fail")
assert.Assignable(foo, bar, "should fail (but not the test)")
assert.Assignable(foo, bar)
assert.Assignable(foo, bar, "this", "should", "fail", "too")
}
// TestPanicAssertion tests if the panic assertions panic when they fail.
func TestPanicAssert(t *testing.T) {
defer func() {
if err := recover(); err != nil {
t.Logf("panic worked: '%v'", err)
}
}()
assert := audit.NewPanicAssertion()
foo := func() {}
assert.Assignable(47, 11, "should not fail")
assert.Assignable(47, foo, "should fail")
t.Errorf("should not be reached")
}
// TestValidationAssertion test the validation of data.
func TestValidationAssertion(t *testing.T) {
assert, failures := audit.NewValidationAssertion()
assert.True(true, "should not fail")
assert.True(false, "should fail")
assert.Equal(1, 2, "should fail")
if !failures.HasErrors() {
t.Errorf("should have errors")
}
if len(failures.Errors()) != 2 {
t.Errorf("wrong number of errors")
}
t.Log(failures.Error())
if len(failures.Details()) != 2 {
t.Errorf("wrong number of details")
}
details := failures.Details()
fn, l, f := details[0].Location()
tt := details[0].Test()
if fn != "asserts_test.go" || l != 421 || f != "TestValidationAssertion" {
t.Errorf("wrong location of first detail: %d", l)
}
if tt != audit.True {
t.Errorf("wrong test type of first detail: %v", tt)
}
fn, l, f = details[1].Location()
tt = details[1].Test()
if fn != "asserts_test.go" || l != 422 || f != "TestValidationAssertion" {
t.Errorf("wrong location of second detail: %d", l)
}
if tt != audit.Equal {
t.Errorf("wrong test type of second detail: %v", tt)
}
}
// TestSetFailable tests the setting of the failable
// to the one of a sub-test.
func TestSetFailable(t *testing.T) {
successfulAssert := successfulAssertion(t)
failingAssert := failingAssertion(t)
t.Run("success", func(t *testing.T) {
defer successfulAssert.SetFailable(t)()
successfulAssert.True(true)
})
t.Run("fail", func(t *testing.T) {
defer failingAssert.SetFailable(t)()
failingAssert.True(false)
})
}
//--------------------
// META FAILER
//--------------------
type metaFailer struct {
t *testing.T
fail bool
}
func (f *metaFailer) IncrCallstackOffset() func() {
return func() {}
}
func (f *metaFailer) Logf(format string, args ...interface{}) {
f.t.Logf(format, args...)
}
func (f *metaFailer) Fail(test audit.Test, obtained, expected interface{}, msgs ...string) bool {
msg := strings.Join(msgs, " ")
if msg != "" {
msg = " [" + msg + "]"
}
format := "testing assert %q failed: '%v' (%v) <> '%v' (%v)" + msg
obtainedVD := audit.ValueDescription(obtained)
expectedVD := audit.ValueDescription(expected)
f.Logf(format, test, obtained, obtainedVD, expected, expectedVD)
if f.fail {
f.t.FailNow()
}
return f.fail
}
//--------------------
// HELPER
//--------------------
// failWithOffset checks the offset increment.
func failWithOffset(assert audit.Assertion, line string) {
restore := assert.IncrCallstackOffset()
defer restore()
assert.Fail("should fail referencing line " + line)
}
// successfulAssertion returns an assertion which doesn't expect a failing.
func successfulAssertion(t *testing.T) audit.Assertion {
return audit.NewAssertion(&metaFailer{t, true})
}
// failingAssertion returns an assertion which only logs a failing but doesn't fail.
func failingAssertion(t *testing.T) audit.Assertion {
return audit.NewAssertion(&metaFailer{t, false})
}
// EOF
|