當前位置: 首頁>>代碼示例>>Golang>>正文


Golang config.GroupSlice類代碼示例

本文整理匯總了Golang中github.com/corestoreio/csfw/config.GroupSlice的典型用法代碼示例。如果您正苦於以下問題:Golang GroupSlice類的具體用法?Golang GroupSlice怎麽用?Golang GroupSlice使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了GroupSlice類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: TestGroupSliceMerge

func TestGroupSliceMerge(t *testing.T) {

	tests := []struct {
		have    []*config.Group
		wantErr error
		want    string
	}{
		{
			have: []*config.Group{
				{
					ID: "b",
					Fields: config.FieldSlice{
						&config.Field{ID: "c", Default: `c`, Type: config.TypeMultiselect},
					},
				},
				{
					ID: "b",
					Fields: config.FieldSlice{
						&config.Field{ID: "d", Default: `d`, Comment: "Ring of fire", Type: config.TypeObscure},
						&config.Field{ID: "c", Default: `haha`, Type: config.TypeSelect, Scope: scope.NewPerm(scope.DefaultID, scope.WebsiteID)},
					},
				},
				{
					ID: "b",
					Fields: config.FieldSlice{
						&config.Field{ID: "d", Default: `overriddenD`, Label: "Sect2Group2Label4", Comment: "LOTR"},
						&config.Field{ID: "c", Default: `overriddenHaha`, Type: config.TypeHidden},
					},
				},
			},
			wantErr: nil,
			want:    `[{"ID":"b","Fields":[{"ID":"c","Type":"hidden","Scope":["Default","Website"],"Default":"overriddenHaha"},{"ID":"d","Type":"obscure","Label":"Sect2Group2Label4","Comment":"LOTR","Default":"overriddenD"}]}]` + "\n",
		},
		{
			have:    nil,
			wantErr: nil,
			want:    `null` + "\n",
		},
	}

	for i, test := range tests {
		var baseGsl config.GroupSlice
		haveErr := baseGsl.Merge(test.have...)
		if test.wantErr != nil {
			assert.Len(t, baseGsl, 0)
			assert.Error(t, haveErr)
			assert.Contains(t, haveErr.Error(), test.wantErr)
		} else {
			assert.NoError(t, haveErr)
			j := baseGsl.ToJSON()
			if j != test.want {
				t.Errorf("\nIndex: %d\nExpected: %s\nActual:   %s\n", i, test.want, j)
			}
		}
	}
}
開發者ID:levcom,項目名稱:csfw,代碼行數:56,代碼來源:elements_test.go

示例2: TestGroupSliceSort

func TestGroupSliceSort(t *testing.T) {
	want := []int{-10, 1, 10, 11, 20}
	gs := config.GroupSlice{
		&config.Group{ID: "a", SortOrder: 20},
		&config.Group{ID: "b", SortOrder: -10},
		&config.Group{ID: "c", SortOrder: 10},
		&config.Group{ID: "d", SortOrder: 11},
		&config.Group{ID: "e", SortOrder: 1},
	}
	for i, f := range *(gs.Sort()) {
		assert.EqualValues(t, want[i], f.SortOrder)
	}
}
開發者ID:levcom,項目名稱:csfw,代碼行數:13,代碼來源:elements_test.go


注:本文中的github.com/corestoreio/csfw/config.GroupSlice類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。