本文整理汇总了Golang中github.com/APTrust/exchange/models.GenericFile.Identifier方法的典型用法代码示例。如果您正苦于以下问题:Golang GenericFile.Identifier方法的具体用法?Golang GenericFile.Identifier怎么用?Golang GenericFile.Identifier使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/APTrust/exchange/models.GenericFile
的用法示例。
在下文中一共展示了GenericFile.Identifier方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: TestOriginalPath
func TestOriginalPath(t *testing.T) {
genericFile := models.GenericFile{}
genericFile.IntellectualObjectIdentifier = "uc.edu/cin.675812"
// Top-level custom tag file
genericFile.Identifier = "uc.edu/cin.675812/tagmanifest-sha256.txt"
origPath := genericFile.OriginalPath()
assert.Equal(t, "tagmanifest-sha256.txt", origPath)
// Payload file
genericFile.Identifier = "uc.edu/cin.675812/data/object.properties"
origPath = genericFile.OriginalPath()
assert.Equal(t, "data/object.properties", origPath)
// Nested custom tag file
genericFile.Identifier = "uc.edu/cin.675812/custom/tag/dir/special_info.xml"
origPath = genericFile.OriginalPath()
assert.Equal(t, "custom/tag/dir/special_info.xml", origPath)
}
示例2: TestInstitutionIdentifier
func TestInstitutionIdentifier(t *testing.T) {
genericFile := models.GenericFile{}
genericFile.Identifier = "uc.edu/cin.675812/data/object.properties"
instId, err := genericFile.InstitutionIdentifier()
if err != nil {
t.Errorf(err.Error())
return
}
assert.Equal(t, "uc.edu", instId)
}