blob: e719d3445f75d7fdb3e618853207c2b6adce0058 [file] [log] [blame]
Chetan Gaonkercfcce782016-05-10 10:10:42 -07001#
2# Copyright 2016-present Ciena Corporation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
Chetan Gaonkercd974cd2016-03-04 14:56:58 -080016import unittest
17import os,sys
Chetan Gaonkercd974cd2016-03-04 14:56:58 -080018from EapMD5 import MD5AuthTest
19
20class eap_auth_exchange(unittest.TestCase):
21 def test_eap_md5(self):
22 t = MD5AuthTest()
23 t.runTest()
24 def test_eap_md5_wrg_password(self):
25 t = MD5AuthTest()
26 t._wrong_password()
27 t.runTest()
28
29if __name__ == '__main__':
30 t = MD5AuthTest()
31 t.runTest()
32 ####### Start the EAP-MD5 Negative testcase
33 t._wrong_password()
34 t.runTest()
35