blob: 81abd14a5cb33290953c5ef6c8e5ec2419a0003c [file] [log] [blame]
Matteo Scandolo48d3d2d2017-08-08 13:05:27 -07001
2# Copyright 2017-present Open Networking Foundation
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
16
Chetan Gaonkercfcce782016-05-10 10:10:42 -070017#
18# Copyright 2016-present Ciena Corporation
19#
20# Licensed under the Apache License, Version 2.0 (the "License");
21# you may not use this file except in compliance with the License.
22# You may obtain a copy of the License at
23#
24# http://www.apache.org/licenses/LICENSE-2.0
25#
26# Unless required by applicable law or agreed to in writing, software
27# distributed under the License is distributed on an "AS IS" BASIS,
28# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29# See the License for the specific language governing permissions and
30# limitations under the License.
31#
Chetan Gaonkercd974cd2016-03-04 14:56:58 -080032import unittest
33import os,sys
Chetan Gaonkercd974cd2016-03-04 14:56:58 -080034from EapMD5 import MD5AuthTest
35
36class eap_auth_exchange(unittest.TestCase):
37 def test_eap_md5(self):
38 t = MD5AuthTest()
39 t.runTest()
40 def test_eap_md5_wrg_password(self):
41 t = MD5AuthTest()
42 t._wrong_password()
43 t.runTest()
44
45if __name__ == '__main__':
46 t = MD5AuthTest()
47 t.runTest()
48 ####### Start the EAP-MD5 Negative testcase
49 t._wrong_password()
50 t.runTest()
51