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

Side by Side Diff: chromeos/network/onc/onc_translator_unittest.cc

Issue 788633003: chromeos networking: move from security to securityclass property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@local-master
Patch Set: rebase, resolve conflicts, update new test data (shill_wifi_dhcp.json) Created 5 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chromeos/network/onc/onc_translator.h" 5 #include "chromeos/network/onc/onc_translator.h"
6 6
7 #include "base/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #include "base/values.h" 8 #include "base/values.h"
9 #include "chromeos/network/onc/onc_signature.h" 9 #include "chromeos/network/onc/onc_signature.h"
10 #include "chromeos/network/onc/onc_test_utils.h" 10 #include "chromeos/network/onc/onc_test_utils.h"
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 ONCTranslatorShillToOncTest, 90 ONCTranslatorShillToOncTest,
91 ::testing::Values( 91 ::testing::Values(
92 std::make_pair("shill_ethernet.json", 92 std::make_pair("shill_ethernet.json",
93 "translation_of_shill_ethernet.onc"), 93 "translation_of_shill_ethernet.onc"),
94 std::make_pair("shill_ethernet_with_eap.json", 94 std::make_pair("shill_ethernet_with_eap.json",
95 "translation_of_shill_ethernet_with_eap.onc"), 95 "translation_of_shill_ethernet_with_eap.onc"),
96 std::make_pair("shill_ethernet_with_ipconfig.json", 96 std::make_pair("shill_ethernet_with_ipconfig.json",
97 "translation_of_shill_ethernet_with_ipconfig.onc"), 97 "translation_of_shill_ethernet_with_ipconfig.onc"),
98 std::make_pair("shill_wifi_clientcert.json", 98 std::make_pair("shill_wifi_clientcert.json",
99 "translation_of_shill_wifi_clientcert.onc"), 99 "translation_of_shill_wifi_clientcert.onc"),
100 std::make_pair("shill_wifi_wpa1.json",
101 "translation_of_shill_wifi_wpa1.onc"),
102 std::make_pair("shill_output_l2tpipsec.json", 100 std::make_pair("shill_output_l2tpipsec.json",
103 "translation_of_shill_l2tpipsec.onc"), 101 "translation_of_shill_l2tpipsec.onc"),
104 std::make_pair("shill_output_openvpn.json", 102 std::make_pair("shill_output_openvpn.json",
105 "translation_of_shill_openvpn.onc"), 103 "translation_of_shill_openvpn.onc"),
106 std::make_pair("shill_output_openvpn_with_errors.json", 104 std::make_pair("shill_output_openvpn_with_errors.json",
107 "translation_of_shill_openvpn_with_errors.onc"), 105 "translation_of_shill_openvpn_with_errors.onc"),
108 std::make_pair("shill_wifi_with_state.json", 106 std::make_pair("shill_wifi_with_state.json",
109 "translation_of_shill_wifi_with_state.onc"), 107 "translation_of_shill_wifi_with_state.onc"),
110 std::make_pair("shill_cellular_with_state.json", 108 std::make_pair("shill_cellular_with_state.json",
111 "translation_of_shill_cellular_with_state.onc"), 109 "translation_of_shill_cellular_with_state.onc"),
112 std::make_pair("shill_wimax_with_state.json", 110 std::make_pair("shill_wimax_with_state.json",
113 "translation_of_shill_wimax_with_state.onc"))); 111 "translation_of_shill_wimax_with_state.onc")));
114 112
115 } // namespace onc 113 } // namespace onc
116 } // namespace chromeos 114 } // namespace chromeos
OLDNEW
« no previous file with comments | « chromeos/network/onc/onc_translator_shill_to_onc.cc ('k') | chromeos/network/shill_property_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698