1
0
mirror of https://github.com/ManyakRus/starter.git synced 2025-11-24 22:53:52 +02:00

сделал Find_Tag_JSON()

This commit is contained in:
Nikitin Aleksandr
2025-06-23 16:53:50 +03:00
parent e2e7a4c8c6
commit dbf1bb3a38
2 changed files with 30 additions and 0 deletions

View File

@@ -1868,3 +1868,19 @@ func Round_Float64_WithPrecision(x float64, precision int) float64 {
Otvet := math.Round(x*pow) / pow Otvet := math.Round(x*pow) / pow
return Otvet return Otvet
} }
// Find_Tag_JSON - возвращает тег json для полей структуры
func Find_Tag_JSON(Struct1 any, FieldName string) (string, error) {
var Otvet string
var err error
field, ok := reflect.TypeOf(Struct1).Elem().FieldByName(FieldName)
if !ok {
err = fmt.Errorf("Field %s not found in type %T", FieldName, Struct1)
return Otvet, err
}
Otvet = field.Tag.Get("json")
return Otvet, err
}

View File

@@ -1573,3 +1573,17 @@ func TestRound_Float64_WithPrecision2(t *testing.T) {
t.Errorf("Expected 1.1, but got %f", Otvet) t.Errorf("Expected 1.1, but got %f", Otvet)
} }
} }
func TestFind_Tag_JSON(t *testing.T) {
type StructTest struct {
Test string `json:"test"`
}
StructTest1 := &StructTest{}
Otvet, err := Find_Tag_JSON(StructTest1, "Test")
if err != nil {
t.Errorf("Error: Expected nil, but got %v", err)
}
if Otvet != "test" {
t.Errorf("Expected 'test', but got %s", Otvet)
}
}