43 lines
1.4 KiB
Go
43 lines
1.4 KiB
Go
package main
|
|
|
|
import "testing"
|
|
|
|
func TestParseExpirationFull(t *testing.T) { // test parseExpirationFull with all valid separator
|
|
result, _ := ParseExpiration("2d1h3m47s")
|
|
correctValue := 176627
|
|
if result != correctValue {
|
|
t.Fatal("Error in parseExpirationFull, want : ", correctValue, "got : ", result)
|
|
}
|
|
}
|
|
|
|
func TestParseExpirationMissing(t *testing.T) { // test parseExpirationFull with all valid separator
|
|
result, _ := ParseExpiration("1h47s")
|
|
correctValue := 3647
|
|
if result != correctValue {
|
|
t.Fatal("Error in ParseExpirationFull, want : ", correctValue, "got : ", result)
|
|
}
|
|
}
|
|
|
|
func TestParseExpirationNull(t *testing.T) { // test ParseExpirationFull with all valid separator
|
|
result, _ := ParseExpiration("0")
|
|
correctValue := 0
|
|
if result != correctValue {
|
|
t.Fatal("Error in ParseExpirationFull, want : ", correctValue, "got : ", result)
|
|
}
|
|
}
|
|
|
|
func TestParseExpirationNegative(t *testing.T) { // test ParseExpirationFull with all valid separator
|
|
result, _ := ParseExpiration("-42h1m4s")
|
|
correctValue := -1
|
|
if result != correctValue {
|
|
t.Fatal("Error in ParseExpirationFull, want : ", correctValue, "got : ", result)
|
|
}
|
|
}
|
|
|
|
func TestParseExpirationInvalid(t *testing.T) { // test ParseExpirationFull with all valid separator
|
|
result, _ := ParseExpiration("8h42h1m1d4s")
|
|
correctValue := -1
|
|
if result != correctValue {
|
|
t.Fatal("Error in ParseExpirationFull, want : ", correctValue, "got : ", result)
|
|
}
|
|
}
|