Skip to content

Commit ebcc42b

Browse files
committed
fixed tests, modified generic help message instruction
1 parent 2e343c5 commit ebcc42b

File tree

2 files changed

+19
-12
lines changed

2 files changed

+19
-12
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import unittest
2-
import wifi_hotspot_autoconnect as wifi
2+
import library.hotspot_wrapper as wifi
33

44

55
class Test_Wifi_Hotspot(unittest.TestCase):
@@ -8,19 +8,19 @@ def test_hotspot_exists(self):
88
self.assertTrue(wifi.hotspot_exists())
99

1010
def test_hotspot_autoconnect_value(self):
11-
self.assertIn(wifi.autoconnect_status(), {True, False})
11+
self.assertIn(wifi.status_hotspot_autoconnect(), {True, False})
1212

1313
def test_hotspot_set_autoconnect_true(self):
14-
wifi.autoconnect_set(True)
15-
self.assertTrue(wifi.autoconnect_status())
14+
wifi.set_autoconnect(True)
15+
self.assertTrue(wifi.status_hotspot_autoconnect())
1616

1717
def test_hotspot_set_autoconnect_false(self):
18-
wifi.autoconnect_set(False)
19-
self.assertFalse(wifi.autoconnect_status())
18+
wifi.set_autoconnect(False)
19+
self.assertFalse(wifi.status_hotspot_autoconnect())
2020

2121
def test_hotspot_set_autoconnect_boolean(self):
2222
self.test_hotspot_set_autoconnect_true()
2323
self.test_hotspot_set_autoconnect_false()
2424

2525
def test_hotspot_set_autoconnect_incorrect(self):
26-
self.assertRaises(TypeError, wifi.autoconnect_set, None)
26+
self.assertRaises(TypeError, wifi.set_autoconnect, None)

wifi-hotspot-autoconnect/wifi_hotspot_autoconnect.py

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import sys
12
import click
23
import library.hotspot_wrapper as wrapper
34

@@ -6,16 +7,22 @@
67

78

89
@click.command(context_settings=CONTEXT_SETTINGS)
9-
@click.option("--status", help="Shows Autoconnection Status", is_flag=True, default=None)
10-
@click.option("--on/--off", help="Set Hotspot autoconnection to On/Off", default=None)
10+
@click.option("--status", help="Shows Autoconnection Status", is_flag=True,
11+
default=None)
12+
@click.option("--on/--off", help="Set Hotspot autoconnection to On/Off",
13+
default=None)
1114
def main(status, on):
1215
"""wifi_hotspot_autoconnect helps enable/disable hotspot
1316
autoconnect feature """
1417
if status:
15-
click.echo("Hotspot Auto connection status is: " + str(wrapper.status_hotspot_autoconnect()))
16-
elif on != None:
18+
click.echo("Hotspot Auto connection status is " +
19+
str(wrapper.status_hotspot_autoconnect()))
20+
elif on is not None:
1721
wrapper.set_autoconnect(on)
18-
else:
22+
click.echo("Hotspot Auto connection status is set to " +
23+
str(wrapper.status_hotspot_autoconnect()))
24+
25+
if len(sys.argv) is 1:
1926
print("No configuration detected. Please use --help for instructions")
2027

2128

0 commit comments

Comments
 (0)