mirror of https://github.com/daffainfo/nuclei.git
138 lines
4.0 KiB
Go
138 lines
4.0 KiB
Go
package model
|
|
|
|
import (
|
|
"encoding/json"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/model/types/severity"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/model/types/stringslice"
|
|
"github.com/stretchr/testify/assert"
|
|
"gopkg.in/yaml.v2"
|
|
)
|
|
|
|
func TestInfoJsonMarshal(t *testing.T) {
|
|
info := Info{
|
|
Name: "Test Template Name",
|
|
Authors: stringslice.StringSlice{Value: []string{"forgedhallpass", "ice3man"}},
|
|
Description: "Test description",
|
|
SeverityHolder: severity.Holder{Severity: severity.High},
|
|
Tags: stringslice.StringSlice{Value: []string{"cve", "misc"}},
|
|
Reference: stringslice.NewRawStringSlice("Reference1"),
|
|
Metadata: map[string]interface{}{
|
|
"string_key": "string_value",
|
|
"array_key": []string{"array_value1", "array_value2"},
|
|
"map_key": map[string]string{
|
|
"key1": "val1",
|
|
},
|
|
},
|
|
}
|
|
|
|
result, err := json.Marshal(&info)
|
|
assert.Nil(t, err)
|
|
|
|
expected := `{"name":"Test Template Name","author":["forgedhallpass","ice3man"],"tags":["cve","misc"],"description":"Test description","reference":"Reference1","severity":"high","metadata":{"array_key":["array_value1","array_value2"],"map_key":{"key1":"val1"},"string_key":"string_value"}}`
|
|
assert.Equal(t, expected, string(result))
|
|
}
|
|
|
|
func TestInfoYamlMarshal(t *testing.T) {
|
|
info := Info{
|
|
Name: "Test Template Name",
|
|
Authors: stringslice.StringSlice{Value: []string{"forgedhallpass", "ice3man"}},
|
|
Description: "Test description",
|
|
SeverityHolder: severity.Holder{Severity: severity.High},
|
|
Tags: stringslice.StringSlice{Value: []string{"cve", "misc"}},
|
|
Reference: stringslice.NewRawStringSlice("Reference1"),
|
|
Metadata: map[string]interface{}{
|
|
"string_key": "string_value",
|
|
"array_key": []string{"array_value1", "array_value2"},
|
|
"map_key": map[string]string{
|
|
"key1": "val1",
|
|
},
|
|
},
|
|
}
|
|
|
|
result, err := yaml.Marshal(&info)
|
|
assert.Nil(t, err)
|
|
|
|
expected := `name: Test Template Name
|
|
author:
|
|
- forgedhallpass
|
|
- ice3man
|
|
tags:
|
|
- cve
|
|
- misc
|
|
description: Test description
|
|
reference: Reference1
|
|
severity: high
|
|
metadata:
|
|
array_key:
|
|
- array_value1
|
|
- array_value2
|
|
map_key:
|
|
key1: val1
|
|
string_key: string_value
|
|
`
|
|
assert.Equal(t, expected, string(result))
|
|
}
|
|
|
|
func TestUnmarshal(t *testing.T) {
|
|
templateName := "Test Template"
|
|
authors := []string{"forgedhallpass", "ice3man"}
|
|
tags := []string{"cve", "misc"}
|
|
references := []string{"http://test.com", "http://domain.com"}
|
|
|
|
dynamicKey1 := "customDynamicKey1"
|
|
dynamicKey2 := "customDynamicKey2"
|
|
|
|
dynamicKeysMap := map[string]interface{}{
|
|
dynamicKey1: "customDynamicValue1",
|
|
dynamicKey2: "customDynamicValue2",
|
|
}
|
|
|
|
assertUnmarshalledTemplateInfo := func(t *testing.T, yamlPayload string) Info {
|
|
t.Helper()
|
|
info := Info{}
|
|
err := yaml.Unmarshal([]byte(yamlPayload), &info)
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, info.Name, templateName)
|
|
assert.Equal(t, info.Authors.ToSlice(), authors)
|
|
assert.Equal(t, info.Tags.ToSlice(), tags)
|
|
assert.Equal(t, info.SeverityHolder.Severity, severity.Critical)
|
|
assert.Equal(t, info.Reference.ToSlice(), references)
|
|
assert.Equal(t, info.Metadata, dynamicKeysMap)
|
|
return info
|
|
}
|
|
|
|
yamlPayload1 := `
|
|
name: ` + templateName + `
|
|
author: ` + strings.Join(authors, ", ") + `
|
|
tags: ` + strings.Join(tags, ", ") + `
|
|
severity: critical
|
|
reference: ` + strings.Join(references, ", ") + `
|
|
metadata:
|
|
` + dynamicKey1 + `: ` + dynamicKeysMap[dynamicKey1].(string) + `
|
|
` + dynamicKey2 + `: ` + dynamicKeysMap[dynamicKey2].(string) + `
|
|
`
|
|
yamlPayload2 := `
|
|
name: ` + templateName + `
|
|
author:
|
|
- ` + authors[0] + `
|
|
- ` + authors[1] + `
|
|
tags:
|
|
- ` + tags[0] + `
|
|
- ` + tags[1] + `
|
|
severity: critical
|
|
reference:
|
|
- ` + references[0] + ` # comments are not unmarshalled
|
|
- ` + references[1] + `
|
|
metadata:
|
|
` + dynamicKey1 + `: ` + dynamicKeysMap[dynamicKey1].(string) + `
|
|
` + dynamicKey2 + `: ` + dynamicKeysMap[dynamicKey2].(string) + `
|
|
`
|
|
|
|
info1 := assertUnmarshalledTemplateInfo(t, yamlPayload1)
|
|
info2 := assertUnmarshalledTemplateInfo(t, yamlPayload2)
|
|
assert.Equal(t, info1, info2)
|
|
}
|