mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
544 B
28 lines
544 B
// Copyright 2023 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package util |
|
|
|
import ( |
|
"testing" |
|
|
|
"github.com/stretchr/testify/assert" |
|
) |
|
|
|
func TestPackAndUnpackData(t *testing.T) { |
|
s := "string" |
|
i := int64(4) |
|
f := float32(4.1) |
|
|
|
var s2 string |
|
var i2 int64 |
|
var f2 float32 |
|
|
|
data, err := PackData(s, i, f) |
|
assert.NoError(t, err) |
|
|
|
assert.NoError(t, UnpackData(data, &s2, &i2, &f2)) |
|
assert.NoError(t, UnpackData(data, &s2)) |
|
assert.Error(t, UnpackData(data, &i2)) |
|
assert.Error(t, UnpackData(data, &s2, &f2)) |
|
}
|
|
|