You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by sr...@apache.org on 2023/05/22 11:50:17 UTC

[plc4x] branch develop updated: test(plc4go/cbus): add test for errors

This is an automated email from the ASF dual-hosted git repository.

sruehl pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new 4cac56c635 test(plc4go/cbus): add test for errors
4cac56c635 is described below

commit 4cac56c635fd309f99db50f04dc963abca6e9467
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Mon May 22 13:50:08 2023 +0200

    test(plc4go/cbus): add test for errors
---
 plc4go/spi/utils/Errors.go      |   6 +-
 plc4go/spi/utils/Errors_test.go | 270 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 275 insertions(+), 1 deletion(-)

diff --git a/plc4go/spi/utils/Errors.go b/plc4go/spi/utils/Errors.go
index 5fae258d74..339fb4b3c8 100644
--- a/plc4go/spi/utils/Errors.go
+++ b/plc4go/spi/utils/Errors.go
@@ -43,13 +43,17 @@ func (m MultiError) Error() string {
 	if m.MainError != nil {
 		mainErrorText = fmt.Sprintf("Main Error: %v\nChild errors:\n", m.MainError)
 	}
-	return mainErrorText + strings.Join(func(errors []error) []string {
+	childErrorText := strings.Join(func(errors []error) []string {
 		result := make([]string, len(errors))
 		for i, errorElement := range errors {
 			result[i] = errorElement.Error()
 		}
 		return result
 	}(m.Errors), "\n")
+	if childErrorText == "" {
+		childErrorText = "No errors"
+	}
+	return mainErrorText + childErrorText
 }
 
 type ParseAssertError struct {
diff --git a/plc4go/spi/utils/Errors_test.go b/plc4go/spi/utils/Errors_test.go
new file mode 100644
index 0000000000..5fa3d28f0f
--- /dev/null
+++ b/plc4go/spi/utils/Errors_test.go
@@ -0,0 +1,270 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package utils
+
+import (
+	"github.com/pkg/errors"
+	"github.com/stretchr/testify/assert"
+	"testing"
+	"time"
+)
+
+func TestMultiError_Error(t *testing.T) {
+	type fields struct {
+		MainError error
+		Errors    []error
+	}
+	tests := []struct {
+		name   string
+		fields fields
+		want   string
+	}{
+		{
+			name: "empty multi error",
+			want: "Child errors:\nNo errors",
+		},
+		{
+			name: "some error",
+			fields: fields{
+				MainError: errors.New("I failed hard"),
+			},
+			want: "Main Error: I failed hard\nChild errors:\nNo errors",
+		},
+		{
+			name: "some error with children",
+			fields: fields{
+				MainError: errors.New("I failed hard"),
+				Errors: []error{
+					errors.New("first error"),
+					errors.New("second error"),
+					errors.New("third error"),
+				},
+			},
+			want: "Main Error: I failed hard\nChild errors:\nfirst error\nsecond error\nthird error",
+		},
+	}
+	for _, tt := range tests {
+		t.Run(tt.name, func(t *testing.T) {
+			m := MultiError{
+				MainError: tt.fields.MainError,
+				Errors:    tt.fields.Errors,
+			}
+			assert.Equalf(t, tt.want, m.Error(), "Error()")
+		})
+	}
+}
+
+func TestNewTimeoutError(t *testing.T) {
+	type args struct {
+		timeout time.Duration
+	}
+	tests := []struct {
+		name string
+		args args
+		want TimeoutError
+	}{
+		{
+			name: "create it",
+		},
+	}
+	for _, tt := range tests {
+		t.Run(tt.name, func(t *testing.T) {
+			assert.Equalf(t, tt.want, NewTimeoutError(tt.args.timeout), "NewTimeoutError(%v)", tt.args.timeout)
+		})
+	}
+}
+
+func TestParseAssertError_Error(t *testing.T) {
+	type fields struct {
+		Message string
+	}
+	tests := []struct {
+		name   string
+		fields fields
+		want   string
+	}{
+		{
+			name: "no message",
+		},
+	}
+	for _, tt := range tests {
+		t.Run(tt.name, func(t *testing.T) {
+			e := ParseAssertError{
+				Message: tt.fields.Message,
+			}
+			assert.Equalf(t, tt.want, e.Error(), "Error()")
+		})
+	}
+}
+
+func TestParseAssertError_Is(t *testing.T) {
+	type fields struct {
+		Message string
+	}
+	type args struct {
+		target error
+	}
+	tests := []struct {
+		name   string
+		fields fields
+		args   args
+		want   bool
+	}{
+		{
+			name: "nay",
+		},
+		{
+			name: "yay",
+			args: args{
+				target: ParseAssertError{},
+			},
+			want: true,
+		},
+	}
+	for _, tt := range tests {
+		t.Run(tt.name, func(t *testing.T) {
+			e := ParseAssertError{
+				Message: tt.fields.Message,
+			}
+			assert.Equalf(t, tt.want, e.Is(tt.args.target), "Is(%v)", tt.args.target)
+		})
+	}
+}
+
+func TestParseValidationError_Error(t *testing.T) {
+	type fields struct {
+		Message string
+	}
+	tests := []struct {
+		name   string
+		fields fields
+		want   string
+	}{
+		{
+			name: "no message",
+		},
+	}
+	for _, tt := range tests {
+		t.Run(tt.name, func(t *testing.T) {
+			e := ParseValidationError{
+				Message: tt.fields.Message,
+			}
+			assert.Equalf(t, tt.want, e.Error(), "Error()")
+		})
+	}
+}
+
+func TestParseValidationError_Is(t *testing.T) {
+	type fields struct {
+		Message string
+	}
+	type args struct {
+		target error
+	}
+	tests := []struct {
+		name   string
+		fields fields
+		args   args
+		want   bool
+	}{
+		{
+			name: "nay",
+		},
+		{
+			name: "yay",
+			args: args{
+				target: ParseValidationError{},
+			},
+			want: true,
+		},
+	}
+	for _, tt := range tests {
+		t.Run(tt.name, func(t *testing.T) {
+			e := ParseValidationError{
+				Message: tt.fields.Message,
+			}
+			assert.Equalf(t, tt.want, e.Is(tt.args.target), "Is(%v)", tt.args.target)
+		})
+	}
+}
+
+func TestTimeoutError_Error(t1 *testing.T) {
+	type fields struct {
+		timeout time.Duration
+	}
+	tests := []struct {
+		name   string
+		fields fields
+		want   string
+	}{
+		{
+			name: "no time",
+			want: "got timeout after 0s",
+		},
+		{
+			name: "some time",
+			fields: fields{
+				timeout: 3 * time.Hour,
+			},
+			want: "got timeout after 3h0m0s",
+		},
+	}
+	for _, tt := range tests {
+		t1.Run(tt.name, func(t1 *testing.T) {
+			t := TimeoutError{
+				timeout: tt.fields.timeout,
+			}
+			assert.Equalf(t1, tt.want, t.Error(), "Error()")
+		})
+	}
+}
+
+func TestTimeoutError_Is(t1 *testing.T) {
+	type fields struct {
+		timeout time.Duration
+	}
+	type args struct {
+		target error
+	}
+	tests := []struct {
+		name   string
+		fields fields
+		args   args
+		want   bool
+	}{
+		{
+			name: "nay",
+		},
+		{
+			name: "yay",
+			args: args{
+				target: ParseValidationError{},
+			},
+		},
+	}
+	for _, tt := range tests {
+		t1.Run(tt.name, func(t1 *testing.T) {
+			t := TimeoutError{
+				timeout: tt.fields.timeout,
+			}
+			assert.Equalf(t1, tt.want, t.Is(tt.args.target), "Is(%v)", tt.args.target)
+		})
+	}
+}