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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
|
"""Test cases for the __main__ module."""
from aioresponses import aioresponses
from aioresponses.core import RequestCall
from click.testing import CliRunner
from syrupy.assertion import SnapshotAssertion
from yarl import URL
from tests import fixtures
from . import initialise_credential_store
from renault_api.cli import __main__
def test_charge_history_day(
mocked_responses: aioresponses, cli_runner: CliRunner, snapshot: SnapshotAssertion
) -> None:
"""It exits with a status code of zero."""
initialise_credential_store(include_account_id=True, include_vin=True)
fixtures.inject_get_vehicle_details(mocked_responses, "zoe_40.1.json")
fixtures.inject_get_charge_history(
mocked_responses, start="20201101", end="20201130", period="day"
)
result = cli_runner.invoke(
__main__.main, "charge history --from 2020-11-01 --to 2020-11-30 --period day"
)
assert result.exit_code == 0, result.exception
assert result.output == snapshot
def test_charge_history_month(
mocked_responses: aioresponses, cli_runner: CliRunner, snapshot: SnapshotAssertion
) -> None:
"""It exits with a status code of zero."""
initialise_credential_store(include_account_id=True, include_vin=True)
fixtures.inject_get_vehicle_details(mocked_responses, "zoe_40.1.json")
fixtures.inject_get_charge_history(
mocked_responses, start="202011", end="202011", period="month"
)
result = cli_runner.invoke(
__main__.main, "charge history --from 2020-11-01 --to 2020-11-30"
)
assert result.exit_code == 0, result.exception
assert result.output == snapshot
def test_charge_mode_get(
mocked_responses: aioresponses, cli_runner: CliRunner, snapshot: SnapshotAssertion
) -> None:
"""It exits with a status code of zero."""
initialise_credential_store(include_account_id=True, include_vin=True)
fixtures.inject_get_vehicle_details(mocked_responses, "zoe_40.1.json")
fixtures.inject_get_charge_mode(mocked_responses)
result = cli_runner.invoke(__main__.main, "charge mode")
assert result.exit_code == 0, result.exception
assert result.output == snapshot
def test_charge_mode_set(
mocked_responses: aioresponses, cli_runner: CliRunner, snapshot: SnapshotAssertion
) -> None:
"""It exits with a status code of zero."""
initialise_credential_store(include_account_id=True, include_vin=True)
fixtures.inject_get_vehicle_details(mocked_responses, "zoe_40.1.json")
url = fixtures.inject_set_charge_mode(mocked_responses, mode="schedule_mode")
result = cli_runner.invoke(__main__.main, "charge mode --set schedule_mode")
assert result.exit_code == 0, result.exception
request: RequestCall = mocked_responses.requests[("POST", URL(url))][0]
assert request.kwargs["json"] == snapshot
assert result.output == snapshot
def test_sessions_40(
mocked_responses: aioresponses, cli_runner: CliRunner, snapshot: SnapshotAssertion
) -> None:
"""It exits with a status code of zero."""
initialise_credential_store(include_account_id=True, include_vin=True)
fixtures.inject_get_vehicle_details(mocked_responses, "zoe_40.1.json")
fixtures.inject_get_charges(mocked_responses, start="20201101", end="20201130")
result = cli_runner.invoke(
__main__.main, "charge sessions --from 2020-11-01 --to 2020-11-30"
)
assert result.exit_code == 0, result.exception
assert result.output == snapshot
def test_sessions_45(
mocked_responses: aioresponses, cli_runner: CliRunner, snapshot: SnapshotAssertion
) -> None:
"""It exits with a status code of zero."""
initialise_credential_store(include_account_id=True, include_vin=True)
fixtures.inject_get_vehicle_details(mocked_responses, "zoe_40.1.json")
fixtures.inject_get_charges(
mocked_responses,
start="20201101",
end="20201130",
filename="vehicle_data/charges-megane.json",
)
result = cli_runner.invoke(
__main__.main, "charge sessions --from 2020-11-01 --to 2020-11-30"
)
assert result.exit_code == 0, result.exception
assert result.output == snapshot
def test_sessions_50(
mocked_responses: aioresponses, cli_runner: CliRunner, snapshot: SnapshotAssertion
) -> None:
"""It exits with a status code of zero."""
initialise_credential_store(include_account_id=True, include_vin=True)
fixtures.inject_get_vehicle_details(mocked_responses, "zoe_50.1.json")
fixtures.inject_get_charges(
mocked_responses,
start="20201101",
end="20201130",
filename="vehicle_data/charges-zoe_50.json",
)
result = cli_runner.invoke(
__main__.main, "charge sessions --from 2020-11-01 --to 2020-11-30"
)
assert result.exit_code == 0, result.exception
assert result.output == snapshot
def test_charge_schedule_show(
mocked_responses: aioresponses, cli_runner: CliRunner, snapshot: SnapshotAssertion
) -> None:
"""It exits with a status code of zero."""
initialise_credential_store(include_account_id=True, include_vin=True)
fixtures.inject_get_vehicle_details(mocked_responses, "zoe_40.1.json")
fixtures.inject_get_charge_schedule(mocked_responses, "single")
result = cli_runner.invoke(__main__.main, "charge schedule show")
assert result.exit_code == 0, result.exception
assert result.output == snapshot
def test_charge_schedule_show_alternate(
mocked_responses: aioresponses, cli_runner: CliRunner, snapshot: SnapshotAssertion
) -> None:
"""It exits with a status code of zero."""
initialise_credential_store(include_account_id=True, include_vin=True)
fixtures.inject_get_vehicle_details(mocked_responses, "renault_5.1.json")
fixtures.inject_get_ev_settings(mocked_responses, "single")
result = cli_runner.invoke(__main__.main, "charge schedule show")
assert result.exit_code == 0, result.exception
assert result.output == snapshot
def test_charging_settings_set(
mocked_responses: aioresponses, cli_runner: CliRunner, snapshot: SnapshotAssertion
) -> None:
"""It exits with a status code of zero."""
initialise_credential_store(include_account_id=True, include_vin=True)
fixtures.inject_get_vehicle_details(mocked_responses, "zoe_50.1.json")
fixtures.inject_get_charging_settings(mocked_responses, "multi")
url = fixtures.inject_set_charge_schedule(mocked_responses, "schedules")
monday = "--monday clear"
friday = "--friday T23:30Z,480"
saturday = "--saturday 19:30,120"
result = cli_runner.invoke(
__main__.main, f"charge schedule set 1 {monday} {friday} {saturday}"
)
assert result.exit_code == 0, result.exception
request: RequestCall = mocked_responses.requests[("POST", URL(url))][0]
assert request.kwargs["json"] == snapshot
assert result.output == snapshot
def test_charging_settings_activate(
mocked_responses: aioresponses, cli_runner: CliRunner, snapshot: SnapshotAssertion
) -> None:
"""It exits with a status code of zero."""
initialise_credential_store(include_account_id=True, include_vin=True)
fixtures.inject_get_vehicle_details(mocked_responses, "zoe_50.1.json")
fixtures.inject_get_charging_settings(mocked_responses, "multi")
url = fixtures.inject_set_charge_schedule(mocked_responses, "schedules")
result = cli_runner.invoke(__main__.main, "charge schedule activate 3")
assert result.exit_code == 0, result.exception
request: RequestCall = mocked_responses.requests[("POST", URL(url))][0]
assert request.kwargs["json"] == snapshot
assert result.output == snapshot
def test_charging_settings_deactivate(
mocked_responses: aioresponses, cli_runner: CliRunner, snapshot: SnapshotAssertion
) -> None:
"""It exits with a status code of zero."""
initialise_credential_store(include_account_id=True, include_vin=True)
fixtures.inject_get_vehicle_details(mocked_responses, "zoe_50.1.json")
fixtures.inject_get_charging_settings(mocked_responses, "multi")
url = fixtures.inject_set_charge_schedule(mocked_responses, "schedules")
result = cli_runner.invoke(__main__.main, "charge schedule deactivate 1")
assert result.exit_code == 0, result.exception
request: RequestCall = mocked_responses.requests[("POST", URL(url))][0]
assert request.kwargs["json"] == snapshot
assert result.output == snapshot
def test_charging_start(
mocked_responses: aioresponses, cli_runner: CliRunner, snapshot: SnapshotAssertion
) -> None:
"""It exits with a status code of zero."""
initialise_credential_store(include_account_id=True, include_vin=True)
fixtures.inject_get_vehicle_details(mocked_responses, "zoe_40.1.json")
url = fixtures.inject_set_charging_start(mocked_responses, "start")
result = cli_runner.invoke(__main__.main, "charge start")
assert result.exit_code == 0, result.exception
request: RequestCall = mocked_responses.requests[("POST", URL(url))][0]
assert request.kwargs["json"] == snapshot
assert result.output == snapshot
def test_charging_stop(
mocked_responses: aioresponses, cli_runner: CliRunner, snapshot: SnapshotAssertion
) -> None:
"""It exits with a status code of zero."""
initialise_credential_store(include_account_id=True, include_vin=True)
fixtures.inject_get_vehicle_details(mocked_responses, "zoe_40.1.json")
url = fixtures.inject_set_charging_start(mocked_responses, "stop")
result = cli_runner.invoke(__main__.main, "charge stop")
assert result.exit_code == 0, result.exception
request: RequestCall = mocked_responses.requests[("POST", URL(url))][0]
assert request.kwargs["json"] == snapshot
assert result.output == snapshot
def test_charging_dacia_start(
mocked_responses: aioresponses, cli_runner: CliRunner, snapshot: SnapshotAssertion
) -> None:
"""It exits with a status code of zero."""
initialise_credential_store(include_account_id=True, include_vin=True)
fixtures.inject_get_vehicle_details(mocked_responses, "spring.1.json")
url = fixtures.inject_set_kcm_charge_pause_resume(mocked_responses, "resume")
result = cli_runner.invoke(__main__.main, "charge start")
assert result.exit_code == 0, result.exception
request: RequestCall = mocked_responses.requests[("POST", URL(url))][0]
assert request.kwargs["json"] == snapshot
assert result.output == snapshot
def test_charging_dacia_stop(
mocked_responses: aioresponses, cli_runner: CliRunner, snapshot: SnapshotAssertion
) -> None:
"""It exits with a status code of zero."""
initialise_credential_store(include_account_id=True, include_vin=True)
fixtures.inject_get_vehicle_details(mocked_responses, "spring.1.json")
url = fixtures.inject_set_kcm_charge_pause_resume(mocked_responses, "pause")
result = cli_runner.invoke(__main__.main, "charge stop")
assert result.exit_code == 0, result.exception
request: RequestCall = mocked_responses.requests[("POST", URL(url))][0]
assert request.kwargs["json"] == snapshot
assert result.output == snapshot
|