-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_HackingGoal.py
44 lines (39 loc) · 2.16 KB
/
test_HackingGoal.py
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
# -*- coding: utf-8 -*-
import pytest
from HackingState import HackingState
from HackingGoal import HackingGoal
from Observation import Observation
from Action import Action
#def HackingGoal_testSuggestAction:
# Observation = new Observation("osservazioneX")
# gs = HackingGoal()
def test_displayobservation():
gs = HackingState("TestReflectionString", "Il Pentest sta verificando se la stringa è riflessa", False)
gs.setAction("Invia la richiesta con una testNTT, controlla tutte le pagine per verificare se la stringa è riflessa")
observation1 = Observation("La stringa e' riflessa")
observation2 = Observation("La stringa non e' riflessa")
newHS = HackingState("TestReflectionType", "Il Pentest sta verificando il tipo di riflessione", False)
failState = HackingState("NoXSS", "No xss found", False)
gs.addObservationState(observation1, newHS)
gs.addObservationState(observation2, failState)
hg = HackingGoal("xss", "goal", gs)
avObs = hg.displayCurrentObservations()
assert len(avObs) == 2
assert avObs[0] == observation1
assert avObs[1] == observation2
def test_updatestate():
gs = HackingState("TestReflectionString", "Il Pentest sta verificando se la stringa è riflessa", False)
gs.setAction(Action("NameRequest", "Invia la richiesta con una testNTT, controlla tutte le pagine per verificare se la stringa è riflessa"))
observation1 = Observation("ReflectionString", "La stringa e' riflessa")
observation2 = Observation("NotReflectionString" ,"La stringa non e' riflessa")
newHS = HackingState("TestReflectionType", "Il Pentest sta verificando il tipo di riflessione", False)
actionToAnalyze = Action("CheckReflectionType", "Analizza la riflessione dove è avvenuta")
newHS.setAction(actionToAnalyze)
failState = HackingState("NoXSS", "No xss found", False)
gs.addObservationState(observation1, newHS)
gs.addObservationState(observation2, failState)
hg = HackingGoal("xss", "goal", gs)
currentObservation = Observation("ReflectionString", "La stringa e' riflessa")
hg.acquireObservation(currentObservation)
theActionToDo = hg.suggestAction()
assert theActionToDo == actionToAnalyze