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

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

Issue 402953004: Correctly translate Cellular Device properties to ONC (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Restore cellular_with_state signature, add nested ShillToONCTranslator constructor, update tests Created 6 years, 5 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
Index: chromeos/test/data/network/shill_cellular_with_state.json
diff --git a/chromeos/test/data/network/shill_cellular_with_state.json b/chromeos/test/data/network/shill_cellular_with_state.json
index 96d0f704331c63be4eaa31d2b52fc87543540d23..b26aaae186f67ba99dab39552724ad185762a18a 100644
--- a/chromeos/test/data/network/shill_cellular_with_state.json
+++ b/chromeos/test/data/network/shill_cellular_with_state.json
@@ -10,38 +10,43 @@
},
"Cellular.APN": {
"apn": "test-apn",
+ "name": "test-apn-name",
"username": "test-username",
"password": "test-password"
},
- "Cellular.APNList": [
- {
- "apn": "test-apn0",
- "username": "test-username0",
- "password": "test-password0"
- },
- {
- "apn": "test-apn1",
- "username": "test-username1",
- "password": "test-password1"
- },
- {
- "apn": "test-apn2",
- "username": "test-username2",
- "password": "test-password2"
- },
- {
- "apn": "test-apn3",
- "username": "test-username3",
- "password": "test-password3"
- }
- ],
"Device": {
// This dictionary contains Device properties and not Service properties as
// above.
"Cellular.AllowRoaming": true,
+ "Cellular.APNList": [
+ {
+ "apn": "test-apn0",
+ "username": "test-username0",
+ "password": "test-password0"
+ },
+ {
+ "apn": "test-apn1",
+ "username": "test-username1",
+ "password": "test-password1"
+ },
+ {
+ "apn": "test-apn2",
+ "username": "test-username2",
+ "password": "test-password2"
+ },
+ {
+ "apn": "test-apn3",
+ "username": "test-username3",
+ "password": "test-password3"
+ }
+ ],
"Cellular.HomeProvider": {
"country": "us",
"name": "cellular_provider"
+ },
+ "Cellular.SIMLockStatus": {
+ "LockType": "sim-pin",
+ "LockEnabled": true
}
}
}

Powered by Google App Engine
This is Rietveld 408576698