utils/json test for comparing known, but deprecated method to new implementation
This commit is contained in:
parent
7de916117d
commit
ac6a5602ad
@ -105,6 +105,5 @@ func CIDFromJSONBytesUsingIpldPrime(content []byte) (string, error) {
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
// return cborcid.String(), nil
|
||||
return lnk.String(), nil
|
||||
}
|
||||
|
30
utils/json_test.go
Normal file
30
utils/json_test.go
Normal file
@ -0,0 +1,30 @@
|
||||
package utils
|
||||
|
||||
import (
|
||||
"github.com/stretchr/testify/require"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestAndValidateCIDGeneration(t *testing.T) {
|
||||
testCases := []struct {
|
||||
name string
|
||||
content string
|
||||
}{
|
||||
{
|
||||
"empty string", "",
|
||||
},
|
||||
{
|
||||
"empty json", "{}",
|
||||
},
|
||||
|
||||
{
|
||||
"test record", "\\xa6curlohttps://cerc.iodtypex\\x19WebsiteRegistrationRecordgversione0.0.1ltls_cert_cidx.QmbWqxBEKC3P8tqsKc98xmWNzrzDtRLMiMPL8wBuTGsMnRrbuild_artifact_cidx.QmP8jTG1m9GSDJLCbeWhVSVgEzCPPwXRdCRuJtQ5Tz9Kc9x\\x1crepo_registration_record_cidx.QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D",
|
||||
},
|
||||
}
|
||||
|
||||
for _, tc := range testCases {
|
||||
deprecatedAndCorrect, _ := CIDFromJSONBytes([]byte(tc.content))
|
||||
newImpl, _ := CIDFromJSONBytesUsingIpldPrime([]byte(tc.content))
|
||||
require.Equal(t, deprecatedAndCorrect, newImpl, tc.name)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user