mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 09:14:09 +01:00
f0e15250b9
* Migrate to use jsoniter * fix tests * update gitea.com/go-chi/binding Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: 6543 <6543@obermui.de>
45 lines
1014 B
Go
45 lines
1014 B
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package queue
|
|
|
|
import (
|
|
"testing"
|
|
|
|
jsoniter "github.com/json-iterator/go"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
type testData struct {
|
|
TestString string
|
|
TestInt int
|
|
}
|
|
|
|
func TestToConfig(t *testing.T) {
|
|
cfg := testData{
|
|
TestString: "Config",
|
|
TestInt: 10,
|
|
}
|
|
exemplar := testData{}
|
|
|
|
cfg2I, err := toConfig(exemplar, cfg)
|
|
assert.NoError(t, err)
|
|
cfg2, ok := (cfg2I).(testData)
|
|
assert.True(t, ok)
|
|
assert.NotEqual(t, cfg2, exemplar)
|
|
assert.Equal(t, &cfg, &cfg2)
|
|
|
|
json := jsoniter.ConfigCompatibleWithStandardLibrary
|
|
cfgString, err := json.Marshal(cfg)
|
|
assert.NoError(t, err)
|
|
|
|
cfg3I, err := toConfig(exemplar, cfgString)
|
|
assert.NoError(t, err)
|
|
cfg3, ok := (cfg3I).(testData)
|
|
assert.True(t, ok)
|
|
assert.Equal(t, cfg.TestString, cfg3.TestString)
|
|
assert.Equal(t, cfg.TestInt, cfg3.TestInt)
|
|
assert.NotEqual(t, cfg3, exemplar)
|
|
}
|