Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Unified Diff: chromeos/test/data/network/invalid_settings_with_repairs.json

Issue 2818593003: [CrOS Tether] Add tether network properties (battery percentage, carrier, and signal strength) to t… (Closed)
Patch Set: Ran git cl format. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromeos/network/tether_constants.cc ('k') | chromeos/test/data/network/shill_tether.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/test/data/network/invalid_settings_with_repairs.json
diff --git a/chromeos/test/data/network/invalid_settings_with_repairs.json b/chromeos/test/data/network/invalid_settings_with_repairs.json
index efdc9dc7916965c3e7376c1ddef3f43b49ac3c17..df1abafaa639da44f5b0061c9c571a3e51ac30aa 100644
--- a/chromeos/test/data/network/invalid_settings_with_repairs.json
+++ b/chromeos/test/data/network/invalid_settings_with_repairs.json
@@ -399,6 +399,73 @@
}
}
},
+ "tether-missing-battery-percentage": {
+ "GUID": "guid",
+ "Name": "name",
+ "Type": "Tether",
+ "Tether": {
+ "Carrier": "Project Fi",
+ "SignalStrength": 75
+ }
+ },
+ "tether-negative-battery": {
+ "GUID": "guid",
+ "Name": "name",
+ "Type": "Tether",
+ "Tether": {
+ "BatteryPercentage": -1,
+ "Carrier": "Project Fi",
+ "SignalStrength": 75
+ }
+ },
+ "tether-battery-over-100": {
+ "GUID": "guid",
+ "Name": "name",
+ "Type": "Tether",
+ "Tether": {
+ "BatteryPercentage": 101,
+ "Carrier": "Project Fi",
+ "SignalStrength": 75
+ }
+ },
+ "tether-missing-carrier": {
+ "GUID": "guid",
+ "Name": "name",
+ "Type": "Tether",
+ "Tether": {
+ "BatteryPercentage": 85,
+ "SignalStrength": 75
+ }
+ },
+ "tether-missing-signal-strength": {
+ "GUID": "guid",
+ "Name": "name",
+ "Type": "Tether",
+ "Tether": {
+ "BatteryPercentage": 85,
+ "Carrier": "Project Fi"
+ }
+ },
+ "tether-negative-signal-strength": {
+ "GUID": "guid",
+ "Name": "name",
+ "Type": "Tether",
+ "Tether": {
+ "BatteryPercentage": 85,
+ "Carrier": "Project Fi",
+ "SignalStrength": -1
+ }
+ },
+ "tether-signal-strength-over-100": {
+ "GUID": "guid",
+ "Name": "name",
+ "Type": "Tether",
+ "Tether": {
+ "BatteryPercentage": 85,
+ "Carrier": "Project Fi",
+ "SignalStrength": 101
+ }
+ },
"third-party-vpn-missing-extension-id": {
"GUID": "guid",
"Name": "third-party VPN",
« no previous file with comments | « chromeos/network/tether_constants.cc ('k') | chromeos/test/data/network/shill_tether.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698