|
4 | 4 | "fmt"
|
5 | 5 | "reflect"
|
6 | 6 | "testing"
|
| 7 | + "time" |
7 | 8 |
|
8 | 9 | "github.com/stretchr/testify/assert"
|
9 | 10 | "github.com/stretchr/testify/require"
|
@@ -1790,6 +1791,72 @@ func TestStructToMap_CopyIntArray_WithMaxCopyListSize(t *testing.T) {
|
1790 | 1791 | }, dst)
|
1791 | 1792 | }
|
1792 | 1793 |
|
| 1794 | +func TestStructToMap_CopyStructWithPrivateFields_WithMapVisitor(t *testing.T) { |
| 1795 | + type A struct { |
| 1796 | + Time time.Time |
| 1797 | + Other int |
| 1798 | + } |
| 1799 | + unixTime := time.Unix(10, 10) |
| 1800 | + src := &A{Time: unixTime} |
| 1801 | + dst := map[string]interface{}{} |
| 1802 | + mask := fieldmask_utils.MaskFromString("Time") |
| 1803 | + err := fieldmask_utils.StructToMap(mask, src, dst, fieldmask_utils.WithMapVisitor( |
| 1804 | + func(_ fieldmask_utils.FieldFilter, _ interface{}, dst map[string]interface{}, |
| 1805 | + srcFieldName, dstFieldName string, srcFieldValue reflect.Value) (skipToNext bool) { |
| 1806 | + if srcFieldName == "Time" { |
| 1807 | + dst[dstFieldName] = srcFieldValue.Interface() |
| 1808 | + skipToNext = true |
| 1809 | + } |
| 1810 | + return |
| 1811 | + })) |
| 1812 | + require.NoError(t, err) |
| 1813 | + assert.Equal(t, map[string]interface{}{ |
| 1814 | + "Time": unixTime, |
| 1815 | + }, dst) |
| 1816 | +} |
| 1817 | + |
| 1818 | +func TestStructToMap_MapVisitorVisitsOnlyFilteredFields(t *testing.T) { |
| 1819 | + type A struct { |
| 1820 | + Field1 int |
| 1821 | + Field2 string |
| 1822 | + Field3 int |
| 1823 | + } |
| 1824 | + src := &A{Field1: 42, Field2: "hello", Field3: 44} |
| 1825 | + dst := map[string]interface{}{} |
| 1826 | + mask := fieldmask_utils.MaskFromString("Field1, Field2") |
| 1827 | + var visitedFields []string |
| 1828 | + err := fieldmask_utils.StructToMap(mask, src, dst, fieldmask_utils.WithMapVisitor( |
| 1829 | + func(_ fieldmask_utils.FieldFilter, _ interface{}, _ map[string]interface{}, |
| 1830 | + srcFieldName, _ string, _ reflect.Value) (skipToNext bool) { |
| 1831 | + visitedFields = append(visitedFields, srcFieldName) |
| 1832 | + return |
| 1833 | + })) |
| 1834 | + require.NoError(t, err) |
| 1835 | + assert.Equal(t, visitedFields, []string{"Field1", "Field2"}) |
| 1836 | +} |
| 1837 | + |
| 1838 | +func TestStructToMap_WithMapVisitor_SkipsToNextField(t *testing.T) { |
| 1839 | + type A struct { |
| 1840 | + Field1 int |
| 1841 | + Field2 string |
| 1842 | + Field3 int |
| 1843 | + } |
| 1844 | + src := &A{Field1: 42, Field2: "hello", Field3: 44} |
| 1845 | + dst := map[string]interface{}{} |
| 1846 | + mask := fieldmask_utils.MaskFromString("Field1, Field2") |
| 1847 | + err := fieldmask_utils.StructToMap(mask, src, dst, fieldmask_utils.WithMapVisitor( |
| 1848 | + func(_ fieldmask_utils.FieldFilter, _ interface{}, _ map[string]interface{}, |
| 1849 | + srcFieldName, dstFieldName string, _ reflect.Value) (skipToNext bool) { |
| 1850 | + if srcFieldName == "Field1" { |
| 1851 | + dst[dstFieldName] = 33 |
| 1852 | + skipToNext = true |
| 1853 | + } |
| 1854 | + return |
| 1855 | + })) |
| 1856 | + require.NoError(t, err) |
| 1857 | + assert.Equal(t, map[string]interface{}{"Field1": 33, "Field2": "hello"}, dst) |
| 1858 | +} |
| 1859 | + |
1793 | 1860 | func TestStructToStruct_CopySlice_WithDiffentItemKind(t *testing.T) {
|
1794 | 1861 | type A struct {
|
1795 | 1862 | Field1 []int
|
|
0 commit comments