feat(esp_modem): Add optional ACT to operator-name

Closes https://github.com/espressif/esp-protocols/issues/80
This commit is contained in:
David Cermak
2022-07-11 21:03:55 +02:00
parent 9c3e24b6cf
commit a286634359
5 changed files with 34 additions and 4 deletions

View File

@ -56,6 +56,14 @@ TEST_CASE("DCE AT parser", "[esp_modem]")
std::string model;
CHECK(dce->get_module_name(model) == command_result::OK);
CHECK(model == "0G Dummy Model");
std::string operator_name;
int act = 99;
CHECK(dce->get_operator_name(operator_name) == command_result::OK);
CHECK(operator_name == "OperatorName");
CHECK(dce->get_operator_name(operator_name, act) == command_result::OK);
CHECK(operator_name == "OperatorName");
CHECK(act == 5);
}