当前位置: 首页>>代码示例>>Golang>>正文


Golang Component.GetName方法代码示例

本文整理汇总了Golang中github.com/opencontrol/compliance-masonry/models/components/versions/base.Component.GetName方法的典型用法代码示例。如果您正苦于以下问题:Golang Component.GetName方法的具体用法?Golang Component.GetName怎么用?Golang Component.GetName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/opencontrol/compliance-masonry/models/components/versions/base.Component的用法示例。


在下文中一共展示了Component.GetName方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: getNarrativeSection

// getNarrativeSection will just print the narrative section text. No need to print the section header since it was specified.
func getNarrativeSection(text string, justification models.Verification, component base.Component, specifiedSections *set.Set) string {
	// Add the component name.
	text = fmt.Sprintf("%s%s\n", text, component.GetName())

	// Use generic []base.Section handler.
	return getSpecificGenericSections(justification.SatisfiesData.GetNarratives(), text, specifiedSections)
}
开发者ID:geramirez,项目名称:compliance-masonry,代码行数:8,代码来源:docx.go

示例2: getCoveredByVerification

func (openControl *OpenControlGitBook) getCoveredByVerification(text string, component base.Component, coveredBy common.CoveredBy) string {
	if component != nil {
		verification := component.GetVerifications().Get(coveredBy.VerificationKey)
		text += exportLink(
			fmt.Sprintf("%s - %s", component.GetName(), verification.Name),
			filepath.Join("..", "components", component.GetKey()+".md"),
		)
	}
	return text
}
开发者ID:geramirez,项目名称:compliance-masonry,代码行数:10,代码来源:gitbookCertification.go

示例3: getResponsibleRoleInfo

// getResponsibleRoleInfo will just print the responsible role if it exists.
func getResponsibleRoleInfo(text string, component base.Component) string {
	// Add the component name.
	text = fmt.Sprintf("%s%s: ", text, component.GetName())
	// Print out the component name and the responsible for that component.
	if component.GetResponsibleRole() != "" {
		return fmt.Sprintf("%s%s\n", text, component.GetResponsibleRole())
	}
	// Else, print warning indicating there was no info.
	return fmt.Sprintf("%s%s\n", text, constants.WarningNoInformationAvailable)
}
开发者ID:geramirez,项目名称:compliance-masonry,代码行数:11,代码来源:docx.go

示例4: testSet

func testSet(example base.Component, actual base.Component, t *testing.T) {
	// Check that the key was loaded
	if example.GetKey() != actual.GetKey() {
		t.Errorf("Expected %s, Actual: %s", example.GetKey(), actual.GetKey())
	}
	// Check that the name was loaded
	if example.GetName() != actual.GetName() {
		t.Errorf("Expected %s, Actual: %s", example.GetName(), actual.GetName())
	}
	// Check that the schema version was loaded
	if example.GetVersion().NE(actual.GetVersion()) {
		t.Errorf("Expected %f, Actual: %f", example.GetVersion(), actual.GetVersion())
	}
	// Check that the references were loaded
	if example.GetReferences().Len() != actual.GetReferences().Len() {
		t.Errorf("Expected %d, Actual: %d", example.GetReferences().Len(), actual.GetReferences().Len())
	}
	// Check that the satisfies data was loaded
	if len(example.GetAllSatisfies()) != len(actual.GetAllSatisfies()) {
		t.Errorf("Expected %d, Actual: %d", len(example.GetAllSatisfies()), len(actual.GetAllSatisfies()))
	}
	// Check Narratives and Parameters.
	for idx, _ := range actual.GetAllSatisfies() {
		assert.Equal(t, (example.GetAllSatisfies())[idx].GetNarratives(), (actual.GetAllSatisfies())[idx].GetNarratives())
		assert.Equal(t, (example.GetAllSatisfies())[idx].GetParameters(), (actual.GetAllSatisfies())[idx].GetParameters())
	}
	// Check the responsible role.
	assert.Equal(t, example.GetResponsibleRole(), actual.GetResponsibleRole())
	// Check that the verifications were loaded
	if example.GetVerifications().Len() != actual.GetVerifications().Len() {
		t.Errorf("Expected %d, Actual: %d", example.GetVerifications().Len(), actual.GetVerifications())
	}
}
开发者ID:geramirez,项目名称:compliance-masonry,代码行数:33,代码来源:parse_test.go

示例5: getAllNarrativeSections

// getAllNarrativeSection will print both the section header and the section text for all narrative sections.
func getAllNarrativeSections(text string, justification models.Verification, component base.Component) string {
	// Add the component name.
	text = fmt.Sprintf("%s%s\n", text, component.GetName())
	for _, section := range justification.SatisfiesData.GetNarratives() {
		// If we want to print out all the sections...

		// If section header exists, let's print it. Key could be empty, in that case
		// just print the text for the section.
		if section.GetKey() != "" {
			text = fmt.Sprintf("%s%s:\n", text, section.GetKey())
		}
		text = fmt.Sprintf("%s%s\n", text, section.GetText())

		// Automatically assume foundText is true as long as the length of
		// justification.SatisfiesData.Narrative is > 0, which is implied if we reach here.
		// Also, in case the section in the YAML is explicitly "", we accept empty string here too.
	}
	return text

}
开发者ID:geramirez,项目名称:compliance-masonry,代码行数:21,代码来源:docx.go


注:本文中的github.com/opencontrol/compliance-masonry/models/components/versions/base.Component.GetName方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。