mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
ci: fix mssql docker service failed in ci (#3792)
This commit is contained in:
parent
c4327f62e7
commit
777c2e7117
13
.github/workflows/ci-main.sh
vendored
13
.github/workflows/ci-main.sh
vendored
@ -7,23 +7,24 @@ for file in `find . -name go.mod`; do
|
||||
dirpath=$(dirname $file)
|
||||
echo $dirpath
|
||||
|
||||
# ignore mssql tests as its docker service failed
|
||||
# TODO remove this ignoring codes after the mssql docker service OK
|
||||
if [ "mssql" = $(basename $dirpath) ]; then
|
||||
continue 1
|
||||
fi
|
||||
|
||||
if [[ $file =~ "/testdata/" ]]; then
|
||||
echo "ignore testdata path $file"
|
||||
continue 1
|
||||
fi
|
||||
|
||||
# package kuhecm needs golang >= v1.19
|
||||
# package kuhecm was moved to sub ci procedure.
|
||||
if [ "kubecm" = $(basename $dirpath) ]; then
|
||||
continue 1
|
||||
if ! go version|grep -qE "go1.19|go1.[2-9][0-9]"; then
|
||||
echo "ignore kubecm as go version: $(go version)"
|
||||
continue 1
|
||||
fi
|
||||
fi
|
||||
|
||||
# package consul needs golang >= v1.19
|
||||
if [ "consul" = $(basename $dirpath) ]; then
|
||||
continue 1
|
||||
if ! go version|grep -qE "go1.19|go1.[2-9][0-9]"; then
|
||||
echo "ignore consul as go version: $(go version)"
|
||||
continue 1
|
||||
|
34
.github/workflows/ci-main.yml
vendored
34
.github/workflows/ci-main.yml
vendored
@ -108,22 +108,24 @@ jobs:
|
||||
# -e MSSQL_USER=root \
|
||||
# -e MSSQL_PASSWORD=LoremIpsum86 \
|
||||
# loads/mssqldocker:14.0.3391.2
|
||||
mssql:
|
||||
image: loads/mssqldocker:14.0.3391.2
|
||||
env:
|
||||
ACCEPT_EULA: Y
|
||||
SA_PASSWORD: LoremIpsum86
|
||||
MSSQL_DB: test
|
||||
MSSQL_USER: root
|
||||
MSSQL_PASSWORD: LoremIpsum86
|
||||
ports:
|
||||
- 1433:1433
|
||||
options: >-
|
||||
--health-cmd="/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P LoremIpsum86 -l 30 -Q \"SELECT 1\" || exit 1"
|
||||
--health-start-period 10s
|
||||
--health-interval 10s
|
||||
--health-timeout 5s
|
||||
--health-retries 10
|
||||
|
||||
# TODO mssql docker failed, will be enabled later after it is OK in github action.
|
||||
# mssql:
|
||||
# image: loads/mssqldocker:14.0.3391.2
|
||||
# env:
|
||||
# ACCEPT_EULA: Y
|
||||
# SA_PASSWORD: LoremIpsum86
|
||||
# MSSQL_DB: test
|
||||
# MSSQL_USER: root
|
||||
# MSSQL_PASSWORD: LoremIpsum86
|
||||
# ports:
|
||||
# - 1433:1433
|
||||
# options: >-
|
||||
# --health-cmd="/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P LoremIpsum86 -l 30 -Q \"SELECT 1\" || exit 1"
|
||||
# --health-start-period 10s
|
||||
# --health-interval 10s
|
||||
# --health-timeout 5s
|
||||
# --health-retries 10
|
||||
|
||||
# ClickHouse backend server.
|
||||
# docker run -d --name clickhouse \
|
||||
|
@ -125,7 +125,7 @@ linters-settings:
|
||||
# Checks the number of lines in a function.
|
||||
# If lower than 0, disable the check.
|
||||
# Default: 60
|
||||
lines: 330
|
||||
lines: 340
|
||||
# Checks the number of statements in a function.
|
||||
# If lower than 0, disable the check.
|
||||
# Default: 40
|
||||
|
@ -208,9 +208,11 @@ type (
|
||||
NoModelComment bool `name:"noModelComment" short:"m" brief:"{CGenDaoBriefNoModelComment}" orphan:"true"`
|
||||
Clear bool `name:"clear" short:"a" brief:"{CGenDaoBriefClear}" orphan:"true"`
|
||||
|
||||
TypeMapping map[DBFieldTypeName]CustomAttributeType `name:"typeMapping" short:"y" brief:"{CGenDaoBriefTypeMapping}" orphan:"true"`
|
||||
FieldMapping map[DBTableFieldName]CustomAttributeType `name:"fieldMapping" short:"fm" brief:"{CGenDaoBriefFieldMapping}" orphan:"true"`
|
||||
genItems *CGenDaoInternalGenItems
|
||||
TypeMapping map[DBFieldTypeName]CustomAttributeType `name:"typeMapping" short:"y" brief:"{CGenDaoBriefTypeMapping}" orphan:"true"`
|
||||
FieldMapping map[DBTableFieldName]CustomAttributeType `name:"fieldMapping" short:"fm" brief:"{CGenDaoBriefFieldMapping}" orphan:"true"`
|
||||
|
||||
// internal usage purpose.
|
||||
genItems *CGenDaoInternalGenItems
|
||||
}
|
||||
CGenDaoOutput struct{}
|
||||
|
||||
|
@ -101,7 +101,7 @@ func internalMiddlewareObservability(c *Client, r *http.Request) (response *Resp
|
||||
if response == nil || response.Response == nil {
|
||||
return
|
||||
}
|
||||
|
||||
// TODO ignore binary content ReadAll, for example downloading request.
|
||||
reqBodyContentBytes, _ := io.ReadAll(response.Body)
|
||||
response.Body = utils.NewReadCloser(reqBodyContentBytes, false)
|
||||
|
||||
|
@ -38,6 +38,10 @@ var (
|
||||
}
|
||||
)
|
||||
|
||||
// IUnmarshalValue is the interface for custom defined types customizing value assignment.
|
||||
// Note that only pointer can implement interface IUnmarshalValue.
|
||||
type IUnmarshalValue = localinterface.IUnmarshalValue
|
||||
|
||||
func init() {
|
||||
// register common converters for internal usage.
|
||||
structcache.RegisterCommonConverter(structcache.CommonConverter{
|
||||
|
28
util/gconv/gconv_z_unit_test.go
Normal file
28
util/gconv/gconv_z_unit_test.go
Normal file
@ -0,0 +1,28 @@
|
||||
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
||||
//
|
||||
// This Source Code Form is subject to the terms of the MIT License.
|
||||
// If a copy of the MIT was not distributed with this file,
|
||||
// You can obtain one at https://github.com/gogf/gf.
|
||||
|
||||
package gconv_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/gogf/gf/v2/test/gtest"
|
||||
"github.com/gogf/gf/v2/util/gconv"
|
||||
)
|
||||
|
||||
type impUnmarshalValue struct{}
|
||||
|
||||
func (*impUnmarshalValue) UnmarshalValue(interface{}) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func TestIUnmarshalValue(t *testing.T) {
|
||||
gtest.C(t, func(t *gtest.T) {
|
||||
var v any = &impUnmarshalValue{}
|
||||
_, ok := (v).(gconv.IUnmarshalValue)
|
||||
t.AssertEQ(ok, true)
|
||||
})
|
||||
}
|
@ -89,24 +89,24 @@ type IMapStrAny interface {
|
||||
MapStrAny() map[string]interface{}
|
||||
}
|
||||
|
||||
// IUnmarshalValue is the interface for custom defined types customizing value assignment.
|
||||
// Note that only pointer can implement interface iUnmarshalValue.
|
||||
type IUnmarshalValue interface {
|
||||
UnmarshalValue(interface{}) error
|
||||
}
|
||||
|
||||
// IUnmarshalText is the interface for custom defined types customizing value assignment.
|
||||
// Note that only pointer can implement interface iUnmarshalText.
|
||||
// Note that only pointer can implement interface IUnmarshalText.
|
||||
type IUnmarshalText interface {
|
||||
UnmarshalText(text []byte) error
|
||||
}
|
||||
|
||||
// IUnmarshalJSON is the interface for custom defined types customizing value assignment.
|
||||
// Note that only pointer can implement interface iUnmarshalJSON.
|
||||
// Note that only pointer can implement interface IUnmarshalJSON.
|
||||
type IUnmarshalJSON interface {
|
||||
UnmarshalJSON(b []byte) error
|
||||
}
|
||||
|
||||
// IUnmarshalValue is the interface for custom defined types customizing value assignment.
|
||||
// Note that only pointer can implement interface IUnmarshalValue.
|
||||
type IUnmarshalValue interface {
|
||||
UnmarshalValue(interface{}) error
|
||||
}
|
||||
|
||||
// ISet is the interface for custom value assignment.
|
||||
type ISet interface {
|
||||
Set(value interface{}) (old interface{})
|
||||
|
@ -263,6 +263,7 @@ func (v *Validator) doCheckStruct(ctx context.Context, object interface{}) Error
|
||||
case reflect.Map, reflect.Ptr, reflect.Slice, reflect.Array:
|
||||
// Nothing to do.
|
||||
continue
|
||||
default:
|
||||
}
|
||||
}
|
||||
v.doCheckValueRecursively(ctx, doCheckValueRecursivelyInput{
|
||||
@ -272,6 +273,7 @@ func (v *Validator) doCheckStruct(ctx context.Context, object interface{}) Error
|
||||
ErrorMaps: errorMaps,
|
||||
ResultSequenceRules: &resultSequenceRules,
|
||||
})
|
||||
default:
|
||||
}
|
||||
}
|
||||
if v.bail && len(errorMaps) > 0 {
|
||||
@ -284,6 +286,7 @@ func (v *Validator) doCheckStruct(ctx context.Context, object interface{}) Error
|
||||
|
||||
// The following logic is the same as some of CheckMap but with sequence support.
|
||||
for _, checkRuleItem := range checkRules {
|
||||
// it ignores Meta object.
|
||||
if !checkRuleItem.IsMeta {
|
||||
value = getPossibleValueFromMap(
|
||||
inputParamMap, checkRuleItem.Name, fieldToAliasNameMap[checkRuleItem.Name],
|
||||
@ -300,6 +303,7 @@ func (v *Validator) doCheckStruct(ctx context.Context, object interface{}) Error
|
||||
if gconv.String(value) == emptyJsonArrayStr {
|
||||
value = ""
|
||||
}
|
||||
default:
|
||||
}
|
||||
}
|
||||
// It checks each rule and its value in loop.
|
||||
@ -322,6 +326,7 @@ func (v *Validator) doCheckStruct(ctx context.Context, object interface{}) Error
|
||||
required := false
|
||||
// rule => error
|
||||
for ruleKey := range errorItem {
|
||||
// it checks whether current rule is kind of required rule.
|
||||
if required = v.checkRuleRequired(ruleKey); required {
|
||||
break
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user