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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <map>
#include <string>
#include <vector>
#include "net/proxy/proxy_config_service_linux.h"
#include "base/logging.h"
#include "base/string_util.h"
#include "net/proxy/proxy_config.h"
#include "net/proxy/proxy_config_service_common_unittest.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace net {
namespace {
// Set of values for all environment variables that we might
// query. NULL represents an unset variable.
struct EnvVarValues {
// The strange capitalization is so that the field matches the
// environment variable name exactly.
const char *GNOME_DESKTOP_SESSION_ID, *DESKTOP_SESSION,
*auto_proxy, *all_proxy,
*http_proxy, *https_proxy, *ftp_proxy,
*SOCKS_SERVER, *SOCKS_VERSION,
*no_proxy;
};
// So as to distinguish between an unset gconf boolean variable and
// one that is false.
enum BoolSettingValue {
UNSET = 0, TRUE, FALSE
};
// Set of values for all gconf settings that we might query.
struct GConfValues {
// strings
const char *mode, *autoconfig_url,
*http_host, *secure_host, *ftp_host, *socks_host;
// integers
int http_port, secure_port, ftp_port, socks_port;
// booleans
BoolSettingValue use_proxy, same_proxy, use_auth;
// string list
std::vector<std::string> ignore_hosts;
};
// Mapping from a setting name to the location of the corresponding
// value (inside a EnvVarValues or GConfValues struct).
template<typename value_type>
struct SettingsTable {
typedef std::map<std::string, value_type*> map_type;
// Gets the value from its location
value_type Get(const std::string& key) {
typename map_type::const_iterator it = settings.find(key);
// In case there's a typo or the unittest becomes out of sync.
CHECK(it != settings.end()) << "key " << key << " not found";
value_type* value_ptr = it->second;
return *value_ptr;
}
map_type settings;
};
class MockEnvironmentVariableGetter
: public ProxyConfigServiceLinux::EnvironmentVariableGetter {
public:
MockEnvironmentVariableGetter() {
#define ENTRY(x) table.settings[#x] = &values.x
ENTRY(GNOME_DESKTOP_SESSION_ID);
ENTRY(DESKTOP_SESSION);
ENTRY(auto_proxy);
ENTRY(all_proxy);
ENTRY(http_proxy);
ENTRY(https_proxy);
ENTRY(ftp_proxy);
ENTRY(no_proxy);
ENTRY(SOCKS_SERVER);
ENTRY(SOCKS_VERSION);
#undef ENTRY
reset();
}
// Zeros all environment values.
void reset() {
EnvVarValues zero_values = { 0 };
values = zero_values;
}
virtual bool Getenv(const char* variable_name, std::string* result) {
const char* env_value = table.Get(variable_name);
if (env_value) {
// Note that the variable may be defined but empty.
*result = env_value;
return true;
}
return false;
}
// Intentionally public, for convenience when setting up a test.
EnvVarValues values;
private:
SettingsTable<const char*> table;
};
class MockGConfSettingGetter
: public ProxyConfigServiceLinux::GConfSettingGetter {
public:
MockGConfSettingGetter() {
#define ENTRY(key, field) \
strings_table.settings["/system/" key] = &values.field
ENTRY("proxy/mode", mode);
ENTRY("proxy/autoconfig_url", autoconfig_url);
ENTRY("http_proxy/host", http_host);
ENTRY("proxy/secure_host", secure_host);
ENTRY("proxy/ftp_host", ftp_host);
ENTRY("proxy/socks_host", socks_host);
#undef ENTRY
#define ENTRY(key, field) \
ints_table.settings["/system/" key] = &values.field
ENTRY("http_proxy/port", http_port);
ENTRY("proxy/secure_port", secure_port);
ENTRY("proxy/ftp_port", ftp_port);
ENTRY("proxy/socks_port", socks_port);
#undef ENTRY
#define ENTRY(key, field) \
bools_table.settings["/system/" key] = &values.field
ENTRY("http_proxy/use_http_proxy", use_proxy);
ENTRY("http_proxy/use_same_proxy", same_proxy);
ENTRY("http_proxy/use_authentication", use_auth);
#undef ENTRY
string_lists_table.settings["/system/http_proxy/ignore_hosts"] =
&values.ignore_hosts;
reset();
}
// Zeros all environment values.
void reset() {
GConfValues zero_values;
values = zero_values;
}
virtual void Enter() {}
virtual void Leave() {}
virtual bool InitIfNeeded() {
return true;
}
virtual bool GetString(const char* key, std::string* result) {
const char* value = strings_table.Get(key);
if (value) {
*result = value;
return true;
}
return false;
}
virtual bool GetInt(const char* key, int* result) {
// We don't bother to distinguish unset keys from 0 values.
*result = ints_table.Get(key);
return true;
}
virtual bool GetBoolean(const char* key, bool* result) {
BoolSettingValue value = bools_table.Get(key);
switch (value) {
case UNSET:
return false;
case TRUE:
*result = true;
break;
case FALSE:
*result = false;
}
return true;
}
virtual bool GetStringList(const char* key,
std::vector<std::string>* result) {
*result = string_lists_table.Get(key);
// We don't bother to distinguish unset keys from empty lists.
return !result->empty();
}
// Intentionally public, for convenience when setting up a test.
GConfValues values;
private:
SettingsTable<const char*> strings_table;
SettingsTable<int> ints_table;
SettingsTable<BoolSettingValue> bools_table;
SettingsTable<std::vector<std::string> > string_lists_table;
};
} // namespace
// Builds an identifier for each test in an array.
#define TEST_DESC(desc) StringPrintf("at line %d <%s>", __LINE__, desc)
#if 0 // gconf temporarily disabled.
TEST(ProxyConfigServiceLinuxTest, BasicGConfTest) {
MockEnvironmentVariableGetter* env_getter =
new MockEnvironmentVariableGetter;
MockGConfSettingGetter* gconf_getter = new MockGConfSettingGetter;
ProxyConfigServiceLinux service(env_getter, gconf_getter);
// This env var indicates we are running Gnome and should consult gconf.
env_getter->values.GNOME_DESKTOP_SESSION_ID = "defined";
std::vector<std::string> empty_ignores;
std::vector<std::string> google_ignores;
google_ignores.push_back("*.google.com");
// Inspired from proxy_config_service_win_unittest.cc.
// Very neat, but harder to track down failures though.
const struct {
// Short description to identify the test
std::string description;
// Input.
GConfValues values;
// Expected outputs (fields of the ProxyConfig).
bool auto_detect;
GURL pac_url;
ProxyConfig::ProxyRules proxy_rules;
const char* proxy_bypass_list; // newline separated
bool bypass_local_names;
} tests[] = {
{
TEST_DESC("No proxying"),
{ // Input.
"none", // mode
"", // autoconfig_url
"", "", "", "", // hosts
0, 0, 0, 0, // ports
FALSE, FALSE, FALSE, // use, same, auth
empty_ignores, // ignore_hosts
},
// Expected result.
false, // auto_detect
GURL(), // pac_url
ProxyConfig::ProxyRules(), // proxy_rules
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("Auto detect"),
{ // Input.
"auto", // mode
"", // autoconfig_url
"", "", "", "", // hosts
0, 0, 0, 0, // ports
FALSE, FALSE, FALSE, // use, same, auth
empty_ignores, // ignore_hosts
},
// Expected result.
true, // auto_detect
GURL(), // pac_url
ProxyConfig::ProxyRules(), // proxy_rules
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("Valid PAC url"),
{ // Input.
"auto", // mode
"http://wpad/wpad.dat", // autoconfig_url
"", "", "", "", // hosts
0, 0, 0, 0, // ports
FALSE, FALSE, FALSE, // use, same, auth
empty_ignores, // ignore_hosts
},
// Expected result.
false, // auto_detect
GURL("http://wpad/wpad.dat"), // pac_url
ProxyConfig::ProxyRules(), // proxy_rules
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("Invalid PAC url"),
{ // Input.
"auto", // mode
"wpad.dat", // autoconfig_url
"", "", "", "", // hosts
0, 0, 0, 0, // ports
FALSE, FALSE, FALSE, // use, same, auth
empty_ignores, // ignore_hosts
},
// Expected result.
false, // auto_detect
GURL(), // pac_url
ProxyConfig::ProxyRules(), // proxy_rules
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("Single-host in proxy list"),
{ // Input.
"manual", // mode
"", // autoconfig_url
"www.google.com", "", "", "", // hosts
80, 0, 0, 0, // ports
TRUE, TRUE, FALSE, // use, same, auth
empty_ignores, // ignore_hosts
},
// Expected result.
false, // auto_detect
GURL(), // pac_url
MakeSingleProxyRules("www.google.com"), // proxy_rules
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("use_http_proxy is honored"),
{ // Input.
"manual", // mode
"", // autoconfig_url
"www.google.com", "", "", "", // hosts
80, 0, 0, 0, // ports
FALSE, TRUE, FALSE, // use, same, auth
empty_ignores, // ignore_hosts
},
// Expected result.
false, // auto_detect
GURL(), // pac_url
ProxyConfig::ProxyRules(), // proxy_rules
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("use_http_proxy and use_same_proxy are optional"),
{ // Input.
"manual", // mode
"", // autoconfig_url
"www.google.com", "", "", "", // hosts
80, 0, 0, 0, // ports
UNSET, UNSET, FALSE, // use, same, auth
empty_ignores, // ignore_hosts
},
// Expected result.
false, // auto_detect
GURL(), // pac_url
MakeProxyPerSchemeRules("www.google.com", // proxy_rules
"", ""),
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("Single-host, different port"),
{ // Input.
"manual", // mode
"", // autoconfig_url
"www.google.com", "", "", "", // hosts
88, 0, 0, 0, // ports
TRUE, TRUE, FALSE, // use, same, auth
empty_ignores, // ignore_hosts
},
// Expected result.
false, // auto_detect
GURL(), // pac_aurl
MakeSingleProxyRules("www.google.com:88"), // proxy_rules
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("Per-scheme proxy rules"),
{ // Input.
"manual", // mode
"", // autoconfig_url
"www.google.com", // http_host
"www.foo.com", // secure_host
"ftpfoo.com", // ftp
"", // socks
88, 110, 121, 0, // ports
TRUE, FALSE, FALSE, // use, same, auth
empty_ignores, // ignore_hosts
},
// Expected result.
false, // auto_detect
GURL(), // pac_url
MakeProxyPerSchemeRules("www.google.com:88", // proxy_rules
"www.foo.com:110",
"ftpfoo.com:121"),
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("socks"),
{ // Input.
"manual", // mode
"", // autoconfig_url
"", "", "", "socks.com", // hosts
0, 0, 0, 99, // ports
TRUE, FALSE, FALSE, // use, same, auth
empty_ignores, // ignore_hosts
},
// Expected result.
false, // auto_detect
GURL(), // pac_url
MakeSingleProxyRules("socks4://socks.com:99"), // proxy_rules
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("Bypass *.google.com"),
{ // Input.
"manual", // mode
"", // autoconfig_url
"www.google.com", "", "", "", // hosts
80, 0, 0, 0, // ports
TRUE, TRUE, FALSE, // use, same, auth
google_ignores, // ignore_hosts
},
false, // auto_detect
GURL(), // pac_url
MakeSingleProxyRules("www.google.com"), // proxy_rules
"*.google.com\n", // proxy_bypass_list
false, // bypass_local_names
},
};
for (size_t i = 0; i < ARRAYSIZE_UNSAFE(tests); ++i) {
SCOPED_TRACE(StringPrintf("Test[%d] %s", i, tests[i].description.c_str()));
ProxyConfig config;
gconf_getter->values = tests[i].values;
service.GetProxyConfig(&config);
// TODO(sdoyon): Add a description field to each test, and a
// corresponding message to the EXPECT statements, so that it is
// possible to identify which one of the tests failed.
EXPECT_EQ(tests[i].auto_detect, config.auto_detect);
EXPECT_EQ(tests[i].pac_url, config.pac_url);
EXPECT_EQ(tests[i].proxy_bypass_list,
FlattenProxyBypass(config.proxy_bypass));
EXPECT_EQ(tests[i].bypass_local_names, config.proxy_bypass_local_names);
EXPECT_EQ(tests[i].proxy_rules, config.proxy_rules);
}
}
#endif // 0 (gconf disabled)
TEST(ProxyConfigServiceLinuxTest, BasicEnvTest) {
MockEnvironmentVariableGetter* env_getter =
new MockEnvironmentVariableGetter;
MockGConfSettingGetter* gconf_getter = new MockGConfSettingGetter;
ProxyConfigServiceLinux service(env_getter, gconf_getter);
// Inspired from proxy_config_service_win_unittest.cc.
const struct {
// Short description to identify the test
std::string description;
// Input.
EnvVarValues values;
// Expected outputs (fields of the ProxyConfig).
bool auto_detect;
GURL pac_url;
ProxyConfig::ProxyRules proxy_rules;
const char* proxy_bypass_list; // newline separated
bool bypass_local_names;
} tests[] = {
{
TEST_DESC("No proxying"),
{ // Input.
NULL, NULL, // *DESKTOP*
NULL, // auto_proxy
NULL, // all_proxy
NULL, NULL, NULL, // per-proto proxies
NULL, NULL, // SOCKS
"*", // no_proxy
},
// Expected result.
false, // auto_detect
GURL(), // pac_url
ProxyConfig::ProxyRules(), // proxy_rules
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("Auto detect"),
{ // Input.
NULL, NULL, // *DESKTOP*
"", // auto_proxy
NULL, // all_proxy
NULL, NULL, NULL, // per-proto proxies
NULL, NULL, // SOCKS
NULL, // no_proxy
},
// Expected result.
true, // auto_detect
GURL(), // pac_url
ProxyConfig::ProxyRules(), // proxy_rules
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("Valid PAC url"),
{ // Input.
NULL, NULL, // *DESKTOP*
"http://wpad/wpad.dat", // auto_proxy
NULL, // all_proxy
NULL, NULL, NULL, // per-proto proxies
NULL, NULL, // SOCKS
NULL, // no_proxy
},
// Expected result.
false, // auto_detect
GURL("http://wpad/wpad.dat"), // pac_url
ProxyConfig::ProxyRules(), // proxy_rules
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("Invalid PAC url"),
{ // Input.
NULL, NULL, // *DESKTOP*
"wpad.dat", // auto_proxy
NULL, // all_proxy
NULL, NULL, NULL, // per-proto proxies
NULL, NULL, // SOCKS
NULL, // no_proxy
},
// Expected result.
false, // auto_detect
GURL(), // pac_url
ProxyConfig::ProxyRules(), // proxy_rules
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("Single-host in proxy list"),
{ // Input.
NULL, NULL, // *DESKTOP*
NULL, // auto_proxy
"www.google.com", // all_proxy
NULL, NULL, NULL, // per-proto proxies
NULL, NULL, // SOCKS
NULL, // no_proxy
},
// Expected result.
false, // auto_detect
GURL(), // pac_url
MakeSingleProxyRules("www.google.com"), // proxy_rules
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("Single-host, different port"),
{ // Input.
NULL, NULL, // *DESKTOP*
NULL, // auto_proxy
"www.google.com:99", // all_proxy
NULL, NULL, NULL, // per-proto proxies
NULL, NULL, // SOCKS
NULL, // no_proxy
},
// Expected result.
false, // auto_detect
GURL(), // pac_url
MakeSingleProxyRules("www.google.com:99"), // proxy_rules
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("Tolerate a scheme"),
{ // Input.
NULL, NULL, // *DESKTOP*
NULL, // auto_proxy
"http://www.google.com:99", // all_proxy
NULL, NULL, NULL, // per-proto proxies
NULL, NULL, // SOCKS
NULL, // no_proxy
},
// Expected result.
false, // auto_detect
GURL(), // pac_url
MakeSingleProxyRules("www.google.com:99"), // proxy_rules
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("Per-scheme proxy rules"),
{ // Input.
NULL, NULL, // *DESKTOP*
NULL, // auto_proxy
NULL, // all_proxy
"www.google.com:80", "www.foo.com:110", "ftpfoo.com:121", // per-proto
NULL, NULL, // SOCKS
NULL, // no_proxy
},
// Expected result.
false, // auto_detect
GURL(), // pac_url
MakeProxyPerSchemeRules("www.google.com", "www.foo.com:110",
"ftpfoo.com:121"),
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("socks"),
{ // Input.
NULL, NULL, // *DESKTOP*
NULL, // auto_proxy
"", // all_proxy
NULL, NULL, NULL, // per-proto proxies
"socks.com:888", NULL, // SOCKS
NULL, // no_proxy
},
// Expected result.
false, // auto_detect
GURL(), // pac_url
MakeSingleProxyRules("socks4://socks.com:888"), // proxy_rules
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("socks5"),
{ // Input.
NULL, NULL, // *DESKTOP*
NULL, // auto_proxy
"", // all_proxy
NULL, NULL, NULL, // per-proto proxies
"socks.com:888", "5", // SOCKS
NULL, // no_proxy
},
// Expected result.
false, // auto_detect
GURL(), // pac_url
MakeSingleProxyRules("socks5://socks.com:888"), // proxy_rules
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("socks default port"),
{ // Input.
NULL, NULL, // *DESKTOP*
NULL, // auto_proxy
"", // all_proxy
NULL, NULL, NULL, // per-proto proxies
"socks.com", NULL, // SOCKS
NULL, // no_proxy
},
// Expected result.
false, // auto_detect
GURL(), // pac_url
MakeSingleProxyRules("socks4://socks.com"), // proxy_rules
"", // proxy_bypass_list
false, // bypass_local_names
},
{
TEST_DESC("bypass"),
{ // Input.
NULL, NULL, // *DESKTOP*
NULL, // auto_proxy
"www.google.com", // all_proxy
NULL, NULL, NULL, // per-proto
NULL, NULL, // SOCKS
".google.com, foo.com:99, 1.2.3.4:22, 127.0.0.1/8", // no_proxy
},
false, // auto_detect
GURL(), // pac_url
MakeSingleProxyRules("www.google.com"), // proxy_rules
// proxy_bypass_list
"*.google.com\n*foo.com:99\n1.2.3.4:22\n127.0.0.1/8\n",
false, // bypass_local_names
},
};
for (size_t i = 0; i < ARRAYSIZE_UNSAFE(tests); ++i) {
SCOPED_TRACE(StringPrintf("Test[%d] %s", i, tests[i].description.c_str()));
ProxyConfig config;
env_getter->values = tests[i].values;
service.GetProxyConfig(&config);
EXPECT_EQ(tests[i].auto_detect, config.auto_detect);
EXPECT_EQ(tests[i].pac_url, config.pac_url);
EXPECT_EQ(tests[i].proxy_bypass_list,
FlattenProxyBypass(config.proxy_bypass));
EXPECT_EQ(tests[i].bypass_local_names, config.proxy_bypass_local_names);
EXPECT_EQ(tests[i].proxy_rules, config.proxy_rules);
}
}
// Verify that we fall back on consulting the environment when
// GNOME-specific environment variables aren't available.
TEST(ProxyConfigServiceLinuxTest, FallbackOnEnv) {
MockEnvironmentVariableGetter* env_getter =
new MockEnvironmentVariableGetter;
MockGConfSettingGetter* gconf_getter = new MockGConfSettingGetter;
ProxyConfigServiceLinux service(env_getter, gconf_getter);
// Imagine we're:
// 1) Running a non-GNOME desktop session:
env_getter->values.DESKTOP_SESSION = "default";
// 2) Have settings in gconf.
gconf_getter->values.mode = "auto";
gconf_getter->values.autoconfig_url = "http://incorrect/wpad.dat";
// 3) But we have a proxy-specifying environment variable set:
env_getter->values.auto_proxy = "http://correct/wpad.dat";
ProxyConfig config;
service.GetProxyConfig(&config);
// Then we expect the environment variable to win.
EXPECT_EQ(GURL(env_getter->values.auto_proxy), config.pac_url);
}
} // namespace net
|