Added EAPOL to testcase and outlined 2nd test
Change-Id: Ib199986cb603d4b23e62153207fdd139903794a5
diff --git a/olt.py b/olt.py
index 42ee55d..7330177 100644
--- a/olt.py
+++ b/olt.py
@@ -720,7 +720,7 @@
def runTest(self):
logging.info("Testing Rule removal")
delete_all_flows(self.controller)
- self.processEapolRule(onu_port)
+ self.installEapolRule(onu_port)
#wait for the rule to settle
time.sleep(3)
@@ -735,7 +735,7 @@
self.assertTrue(len(stats) == 5, \
"Wrong number of rules reports; reported %s, expected 5\n\n %s" % (len(stats), stats))
- self.processEapolRule(onu_port, install=False)
+ self.installEapolRule(onu_port, install=False)
time.sleep(3)
stats = get_flow_stats(self, ofp.match())
@@ -758,7 +758,7 @@
logging.info("Testing multiple Q-in-Q rules")
delete_all_flows(self.controller)
- self.processEapolRule(onu_port)
+ self.installEapolRule(onu_port)
time.sleep(1)