File: seed_test.go

package info (click to toggle)
golang-github-adamkorcz-go-fuzz-headers-1 0.0~git20230919.8b5d3ce-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 192 kB
  • sloc: makefile: 3
file content (89 lines) | stat: -rw-r--r-- 7,635 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package gofuzzheaders

import (
	"fmt"
	"strings"
	"os"
	"testing"
	corev1 "k8s.io/api/core/v1"
)

func TestGenerateSeed(t *testing.T) {
	pod := &corev1.Pod{}
	c := NewSeedGenerator()
	s := c.GenerateSeed(pod)
	ff := NewConsumer(s)
	ff.GenerateStruct(pod)
	//t.Log(err)
	t.Logf("%+v\n", pod.TypeMeta.Kind)
	t.Logf("%+v\n", pod.TypeMeta.APIVersion)
	t.Logf("%+v\n", pod.ObjectMeta.Name)
	t.Logf("%+v\n", pod.ObjectMeta.GenerateName)
	t.Logf("%+v\n", pod.ObjectMeta.Namespace)
	t.Logf("%+v\n", pod.ObjectMeta.SelfLink)
	t.Logf("%+v\n", pod.ObjectMeta.ResourceVersion)
	t.Logf("%+v\n", pod.ObjectMeta.Generation)
	t.Logf("%+v\n", *pod.ObjectMeta.DeletionGracePeriodSeconds)
	t.Logf("Labels: %+v\n", pod.ObjectMeta.Labels)
	t.Logf("%+v\n", pod.ObjectMeta.Annotations)
	t.Logf("%+v\n", pod.ObjectMeta.OwnerReferences)
	t.Logf("%+v\n", pod.ObjectMeta.Finalizers)
	t.Logf("OwnerReferences: %+v\n", pod.ObjectMeta.OwnerReferences)
	t.Logf("Containers: %+v\n", pod.Spec.Containers)
	//t.Logf("len(pod.Spec.Containers): %d", len(pod.Spec.Containers))
	var sw strings.Builder
	for _, b := range s {
		sw.WriteString(fmt.Sprintf("0x%X ", b))
	}
	//t.Log(s[0:2000])
	t.Log(len(sw.String()))

	// creates a seed file:
	f, err := os.Create("seed1")
	if err != nil {
		panic(err)
	}
	defer f.Close()
	f.WriteString(sw.String())
	t.Fatal("Done")
}

func TestPod(t *testing.T) {
	data := []byte{0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x35, 0x1, 0x35, 0x35, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x35, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x35, 0x0, 0x0, 0x0, 0x2, 0x35, 0x61, 0x35, 0x61, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x35, 0x35, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x35, 0x1, 0x35, 0x35, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x35, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x35, 0x0, 0x0, 0x0, 0x2, 0x35, 0x61, 0x35, 0x61, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x35, 0x35, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x35, 0x1, 0x35, 0x1, 0x2, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x2, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x2, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x35, 0x35, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x35, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x35, 0x0, 0x0, 0x0, 0x2, 0x35, 0x61, 0x35, 0x61, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x35, 0x35, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x35, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x2, 0x61, 0x61, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x35, 0x35, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x35, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x35, 0x0, 0x0, 0x0, 0x2, 0x35, 0x61, 0x35, 0x61, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x35, 0x35, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x35, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x2, 0x61, 0x61, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x1, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x35, 0x35, 0x0, 0x0, 0x0, 0x2, 0x35, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x35, 0x1, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x35, 0x1, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x35, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x35, 0x1, 0x35, 0x1, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x35, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x1, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x1, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x1, 0x2, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1, 0x0, 0x0, 0x0, 0x3, 0x41, 0x42, 0x43, 0x1}
	f := NewConsumer(data)
	pod := &corev1.Pod{}
	f.GenerateStruct(pod)
	if pod.TypeMeta.Kind != "ABC" {
		t.Fatal("err")
	}
	if pod.TypeMeta.APIVersion != "ABC" {
		t.Fatal("err")
	}
	if pod.ObjectMeta.Name != "ABC" {
		t.Fatal("err")
	}
	if pod.ObjectMeta.GenerateName != "ABC" {
		t.Fatal("err")
	}
	if pod.ObjectMeta.Namespace != "ABC" {
		t.Fatal("err")
	}
	if pod.ObjectMeta.SelfLink != "ABC" {
		t.Fatal("err")
	}
	if pod.ObjectMeta.ResourceVersion != "ABC" {
		t.Fatal("err")
	}
	if pod.ObjectMeta.Generation != 53 {
		t.Fatal("err")
	}
	if *pod.ObjectMeta.DeletionGracePeriodSeconds != 0 {
		t.Fatal("err")		
	}

	t.Logf("%+v\n", *pod.ObjectMeta.DeletionGracePeriodSeconds)
	t.Logf("Labels: %+v\n", pod.ObjectMeta.Labels)
	t.Logf("%+v\n", pod.ObjectMeta.Annotations)
	t.Logf("%+v\n", pod.ObjectMeta.OwnerReferences)
	t.Logf("%+v\n", pod.ObjectMeta.Finalizers)
}