2021-02-03 07:37:24 +00:00
|
|
|
package network
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/projectdiscovery/nuclei/v2/internal/testutils"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestNetworkCompileMake(t *testing.T) {
|
|
|
|
options := testutils.DefaultOptions
|
|
|
|
|
|
|
|
testutils.Init(options)
|
|
|
|
templateID := "testing-network"
|
|
|
|
request := &Request{
|
|
|
|
ID: templateID,
|
|
|
|
Address: []string{"{{Hostname}}", "{{Hostname}}:8082"},
|
|
|
|
ReadSize: 1024,
|
2021-02-03 12:19:10 +00:00
|
|
|
Inputs: []*Input{{Data: "test-data"}},
|
2021-02-03 07:37:24 +00:00
|
|
|
}
|
|
|
|
executerOpts := testutils.NewMockExecuterOptions(options, &testutils.TemplateInfo{
|
|
|
|
ID: templateID,
|
2021-02-03 19:39:29 +00:00
|
|
|
Info: map[string]interface{}{"severity": "low", "name": "test"},
|
2021-02-03 07:37:24 +00:00
|
|
|
})
|
|
|
|
err := request.Compile(executerOpts)
|
|
|
|
require.Nil(t, err, "could not compile network request")
|
|
|
|
|
|
|
|
require.Equal(t, 2, len(request.addresses), "could not get correct number of input address")
|
|
|
|
t.Run("check-host", func(t *testing.T) {
|
|
|
|
require.Equal(t, "{{Hostname}}", request.addresses[0].key, "could not get correct host")
|
|
|
|
})
|
|
|
|
t.Run("check-host-with-port", func(t *testing.T) {
|
|
|
|
require.Equal(t, "{{Hostname}}", request.addresses[1].key, "could not get correct host with port")
|
|
|
|
require.Equal(t, "8082", request.addresses[1].value, "could not get correct port for host")
|
|
|
|
})
|
|
|
|
}
|