-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathTemplate.xml
49 lines (39 loc) · 1.18 KB
/
Template.xml
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
<?xml version="1.0" encoding="utf-8"?>
<Peach xmlns="http://peachfuzzer.com/2012/Peach" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://peachfuzzer.com/2012/Peach /peach/peach.xsd"
author="Name">
<!--
Description - Describe what Protocol this template Implements
Author
-->
<!-- Includes Section -->
<Include ns="Utils" src="file:##PitPath##Utils.xml" />
<!-- End Includes Section -->
<!--
DataModel Description
-->
<DataModel name="MyDataModel">
</DataModel>
<StateModel name="NonState" initialState="initial">
<State name="initial">
<Action type="output">
<DataModel ref="MyDataModel"/>
</Action>
</State>
</StateModel>
<!--
General "Data" Template would likely not have <Test>'s
There meant to be included in another PeachPit that will
be used as the Fuzzer.
-->
<Test name="Default">
<StateModel ref="NonState"/>
<Publisher class="TcpClient">
<Param name="Host" value="10.219.1.225"/>
<Param name="Port" value="80"/>
</Publisher>
<Logger class="File">
<Param name="Path" value="peach_logs/Template" />
</Logger>
</Test>
</Peach>