Format all tests

This commit is contained in:
NikolasPetriti
2023-08-01 08:13:08 +02:00
committed by Dan Christian Bogos
parent bb4a944135
commit 708302e753
4 changed files with 33 additions and 33 deletions

View File

@@ -3406,4 +3406,4 @@ func TestAccountGetID(t *testing.T) {
if rcv != "" {
t.Error(rcv)
}
}
}

View File

@@ -587,7 +587,7 @@ func TestActionFieldAsString(t *testing.T) {
if err != nil {
if err.Error() != "Unsupported format for TenantAccount: test" {
t.Error(err)
}
}
}
}
@@ -601,19 +601,19 @@ func TestActionRemoteHost(t *testing.T) {
func TestActionresetAccountErrors(t *testing.T) {
type args struct {
ub *Account
ub *Account
action *Action
acts Actions
acts Actions
}
tests := []struct{
name string
args args
err string
tests := []struct {
name string
args args
err string
}{
{
name: "nil account",
args: args{ub: nil, action: nil, acts: nil},
err: "nil account",
err: "nil account",
},
}
@@ -667,25 +667,25 @@ func TestActionremoveExpired(t *testing.T) {
}
type args struct {
ub *Account
ub *Account
action *Action
acts Actions
extra any
acts Actions
extra any
}
tests := []struct{
name string
args args
err string
tests := []struct {
name string
args args
err string
}{
{
name: "nil account",
args: args{nil, nil, nil, nil},
err: "nil account for null action",
err: "nil account for null action",
},
{
name: "nil account",
args: args{acc, a, nil, nil},
err: "NOT_FOUND",
err: "NOT_FOUND",
},
}
@@ -717,36 +717,36 @@ func TestActionremoveAccountAction(t *testing.T) {
ID: "",
}
actn := &Action{
ExtraParameters: str2,
ExtraParameters: str2,
}
actn2 := &Action{
ExtraParameters: "",
ExtraParameters: "",
}
type args struct {
ub *Account
ub *Account
action *Action
acts Actions
extra any
acts Actions
extra any
}
tests := []struct{
name string
args args
err string
tests := []struct {
name string
args args
err string
}{
{
name: "error json unmarshal",
args: args{nil, actn, nil, nil},
err: "invalid character 'e' in literal true (expecting 'r')",
err: "invalid character 'e' in literal true (expecting 'r')",
},
{
name: "concatenate key",
args: args{nil, actn2, nil, nil},
err: "",
err: "",
},
{
name: "accID empty string",
args: args{ub, actn2, nil, nil},
err: "INVALID_KEY",
err: "INVALID_KEY",
},
}
@@ -761,4 +761,4 @@ func TestActionremoveAccountAction(t *testing.T) {
}
})
}
}
}

View File

@@ -667,4 +667,4 @@ func TestBalanceCloneNil(t *testing.T) {
if rcv != nil {
t.Error(rcv)
}
}
}

View File

@@ -770,4 +770,4 @@ func TestMapEventData(t *testing.T) {
if !reflect.DeepEqual(rcv, exp) {
t.Error(rcv)
}
}
}