mirror of
https://gitee.com/dromara/carbon.git
synced 2024-12-03 12:48:22 +08:00
357 lines
8.1 KiB
Go
Executable File
357 lines
8.1 KiB
Go
Executable File
package carbon
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestCarbon_Constellation1(t *testing.T) {
|
|
Tests := []struct {
|
|
input Carbon // 输入值1
|
|
output string // 期望输出值
|
|
}{
|
|
{Parse(""), ""},
|
|
{Parse("2020-01-05"), "Capricorn"},
|
|
{Parse("2020-02-05"), "Aquarius"},
|
|
{Parse("2020-03-05"), "Pisces"},
|
|
{Parse("2020-04-05"), "Aries"},
|
|
{Parse("2020-05-05"), "Taurus"},
|
|
{Parse("2020-06-05"), "Gemini"},
|
|
{Parse("2020-07-05"), "Cancer"},
|
|
{Parse("2020-08-05"), "Leo"},
|
|
{Parse("2020-09-05"), "Virgo"},
|
|
{Parse("2020-10-05"), "Libra"},
|
|
{Parse("2020-11-05"), "Scorpio"},
|
|
{Parse("2020-12-05"), "Sagittarius"},
|
|
}
|
|
|
|
for _, v := range Tests {
|
|
output := v.input.Constellation()
|
|
|
|
if output != v.output {
|
|
t.Errorf("Input %s, expected %s, but got %s", v.input.ToDateString(), v.output, output)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestCarbon_Constellation(t *testing.T) {
|
|
Tests := []struct {
|
|
input1 Carbon // 输入值1
|
|
input2 string // 输入值2
|
|
output string // 期望输出值
|
|
}{
|
|
{Parse("2020-08-05"), "en", "Leo"},
|
|
{Parse("2020-08-05"), "zh-CN", "狮子座"},
|
|
{Parse("2020-08-05"), "zh-Tw", "獅子座"},
|
|
{Parse("2020-08-05"), "jp", "ししざ"},
|
|
}
|
|
|
|
for _, v := range Tests {
|
|
output := v.input1.SetLocale(v.input2).Constellation()
|
|
|
|
if output != v.output {
|
|
t.Errorf("Input %s, expected %s, but got %s", v.input1.ToDateString(), v.output, output)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestCarbon_IsAries(t *testing.T) {
|
|
Tests := []struct {
|
|
input Carbon // 输入值
|
|
output bool // 期望输出值
|
|
}{
|
|
{Parse("2020-03-21"), true},
|
|
{Parse("2020-04-19"), true},
|
|
{Parse("2020-08-05"), false},
|
|
}
|
|
|
|
for _, v := range Tests {
|
|
output := v.input.IsAries()
|
|
|
|
if output == true {
|
|
if v.output == false {
|
|
t.Errorf("Input %s is aries, expected true, but got false\n", v.input.ToDateString())
|
|
}
|
|
} else {
|
|
if v.output == true {
|
|
t.Errorf("Input %s is aries, expected false, but got true\n", v.input.ToDateString())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestCarbon_IsTaurus(t *testing.T) {
|
|
Tests := []struct {
|
|
input Carbon // 输入值
|
|
output bool // 期望输出值
|
|
}{
|
|
{Parse("2020-04-20"), true},
|
|
{Parse("2020-05-20"), true},
|
|
{Parse("2020-08-05"), false},
|
|
}
|
|
|
|
for _, v := range Tests {
|
|
output := v.input.IsTaurus()
|
|
|
|
if output == true {
|
|
if v.output == false {
|
|
t.Errorf("Input %s is taurus, expected true, but got false\n", v.input.ToDateString())
|
|
}
|
|
} else {
|
|
if v.output == true {
|
|
t.Errorf("Input %s is taurus, expected false, but got true\n", v.input.ToDateString())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestCarbon_IsGemini(t *testing.T) {
|
|
Tests := []struct {
|
|
input Carbon // 输入值
|
|
output bool // 期望输出值
|
|
}{
|
|
{Parse("2020-05-21"), true},
|
|
{Parse("2020-06-21"), true},
|
|
{Parse("2020-08-05"), false},
|
|
}
|
|
|
|
for _, v := range Tests {
|
|
output := v.input.IsGemini()
|
|
|
|
if output == true {
|
|
if v.output == false {
|
|
t.Errorf("Input %s is gemini, expected true, but got false\n", v.input.ToDateString())
|
|
}
|
|
} else {
|
|
if v.output == true {
|
|
t.Errorf("Input %s is gemini, expected false, but got true\n", v.input.ToDateString())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestCarbon_IsCancer(t *testing.T) {
|
|
Tests := []struct {
|
|
input Carbon // 输入值
|
|
output bool // 期望输出值
|
|
}{
|
|
{Parse("2020-06-22"), true},
|
|
{Parse("2020-07-22"), true},
|
|
{Parse("2020-08-05"), false},
|
|
}
|
|
|
|
for _, v := range Tests {
|
|
output := v.input.IsCancer()
|
|
|
|
if output == true {
|
|
if v.output == false {
|
|
t.Errorf("Input %s is cancer, expected true, but got false\n", v.input.ToDateString())
|
|
}
|
|
} else {
|
|
if v.output == true {
|
|
t.Errorf("Input %s is cancer, expected false, but got true\n", v.input.ToDateString())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestCarbon_IsLeo(t *testing.T) {
|
|
Tests := []struct {
|
|
input Carbon // 输入值
|
|
output bool // 期望输出值
|
|
}{
|
|
{Parse("2020-07-23"), true},
|
|
{Parse("2020-08-05"), true},
|
|
{Parse("2020-08-22"), true},
|
|
{Parse("2020-08-23"), false},
|
|
}
|
|
|
|
for _, v := range Tests {
|
|
output := v.input.IsLeo()
|
|
|
|
if output == true {
|
|
if v.output == false {
|
|
t.Errorf("Input %s is leo, expected true, but got false\n", v.input.ToDateString())
|
|
}
|
|
} else {
|
|
if v.output == true {
|
|
t.Errorf("Input %s is leo, expected false, but got true\n", v.input.ToDateString())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestCarbon_IsVirgo(t *testing.T) {
|
|
Tests := []struct {
|
|
input Carbon // 输入值
|
|
output bool // 期望输出值
|
|
}{
|
|
{Parse("2020-08-23"), true},
|
|
{Parse("2020-09-22"), true},
|
|
{Parse("2020-08-05"), false},
|
|
}
|
|
|
|
for _, v := range Tests {
|
|
output := v.input.IsVirgo()
|
|
|
|
if output == true {
|
|
if v.output == false {
|
|
t.Errorf("Input %s, expected true, but got false\n", v.input.ToDateString())
|
|
}
|
|
} else {
|
|
if v.output == true {
|
|
t.Errorf("Input %s, expected false, but got true\n", v.input.ToDateString())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestCarbon_IsLibra(t *testing.T) {
|
|
Tests := []struct {
|
|
input Carbon // 输入值
|
|
output bool // 期望输出值
|
|
}{
|
|
{Parse("2020-09-23"), true},
|
|
{Parse("2020-10-23"), true},
|
|
{Parse("2020-08-05"), false},
|
|
}
|
|
|
|
for _, v := range Tests {
|
|
output := v.input.IsLibra()
|
|
|
|
if output == true {
|
|
if v.output == false {
|
|
t.Errorf("Input %s is libra, expected true, but got false\n", v.input.ToDateString())
|
|
}
|
|
} else {
|
|
if v.output == true {
|
|
t.Errorf("Input %s is libra, expected false, but got true\n", v.input.ToDateString())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestCarbon_IsScorpio(t *testing.T) {
|
|
Tests := []struct {
|
|
input Carbon // 输入值
|
|
output bool // 期望输出值
|
|
}{
|
|
{Parse("2020-10-24"), true},
|
|
{Parse("2020-11-22"), true},
|
|
{Parse("2020-08-05"), false},
|
|
}
|
|
|
|
for _, v := range Tests {
|
|
output := v.input.IsScorpio()
|
|
|
|
if output == true {
|
|
if v.output == false {
|
|
t.Errorf("Input %s is scorpio, expected true, but got false\n", v.input.ToDateString())
|
|
}
|
|
} else {
|
|
if v.output == true {
|
|
t.Errorf("Input %s is scorpio, expected false, but got true\n", v.input.ToDateString())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestCarbon_IsSagittarius(t *testing.T) {
|
|
Tests := []struct {
|
|
input Carbon // 输入值
|
|
output bool // 期望输出值
|
|
}{
|
|
{Parse("2020-11-23"), true},
|
|
{Parse("2020-12-21"), true},
|
|
{Parse("2020-08-05"), false},
|
|
}
|
|
|
|
for _, v := range Tests {
|
|
output := v.input.IsSagittarius()
|
|
|
|
if output == true {
|
|
if v.output == false {
|
|
t.Errorf("Input %s is sagittarius, expected true, but got false\n", v.input.ToDateString())
|
|
}
|
|
} else {
|
|
if v.output == true {
|
|
t.Errorf("Input %s is sagittarius, expected false, but got true\n", v.input.ToDateString())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestCarbon_IsCapricorn(t *testing.T) {
|
|
Tests := []struct {
|
|
input Carbon // 输入值
|
|
output bool // 期望输出值
|
|
}{
|
|
{Parse("2020-12-22"), true},
|
|
{Parse("2020-01-19"), true},
|
|
{Parse("2020-08-05"), false},
|
|
}
|
|
|
|
for _, v := range Tests {
|
|
output := v.input.IsCapricorn()
|
|
|
|
if output == true {
|
|
if v.output == false {
|
|
t.Errorf("Input %s is capricorn, expected true, but got false\n", v.input.ToDateString())
|
|
}
|
|
} else {
|
|
if v.output == true {
|
|
t.Errorf("Input %s is capricorn, expected false, but got true\n", v.input.ToDateString())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestCarbon_IsAquarius(t *testing.T) {
|
|
Tests := []struct {
|
|
input Carbon // 输入值
|
|
output bool // 期望输出值
|
|
}{
|
|
{Parse("2020-01-20"), true},
|
|
{Parse("2020-02-18"), true},
|
|
{Parse("2020-08-05"), false},
|
|
}
|
|
|
|
for _, v := range Tests {
|
|
output := v.input.IsAquarius()
|
|
|
|
if output == true {
|
|
if v.output == false {
|
|
t.Errorf("Input %s is aquarius, expected true, but got false\n", v.input.ToDateString())
|
|
}
|
|
} else {
|
|
if v.output == true {
|
|
t.Errorf("Input %s is aquarius, expected false, but got true\n", v.input.ToDateString())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestCarbon_IsPisces(t *testing.T) {
|
|
Tests := []struct {
|
|
input Carbon // 输入值
|
|
output bool // 期望输出值
|
|
}{
|
|
{Parse("2020-02-19"), true},
|
|
{Parse("2020-03-20"), true},
|
|
{Parse("2020-08-05"), false},
|
|
}
|
|
|
|
for _, v := range Tests {
|
|
output := v.input.IsPisces()
|
|
|
|
if output == true {
|
|
if v.output == false {
|
|
t.Errorf("Input %s is pisces, expected true, but got false\n", v.input.ToDateString())
|
|
}
|
|
} else {
|
|
if v.output == true {
|
|
t.Errorf("Input %s is pisces, expected false, but got true\n", v.input.ToDateString())
|
|
}
|
|
}
|
|
}
|
|
}
|