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

Side by Side Diff: tests/standalone/io/http_auth_test.dart

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import "dart:isolate"; 5 import 'dart:async';
6 import "dart:crypto"; 6 import 'dart:crypto';
7 import "dart:io"; 7 import 'dart:io';
8 import "dart:uri"; 8 import 'dart:isolate';
9 import "dart:utf"; 9 import 'dart:uri';
10 import 'dart:utf';
10 11
11 class Server { 12 class Server {
12 HttpServer server; 13 HttpServer server;
13 bool passwordChanged = false; 14 bool passwordChanged = false;
14 15
15 Server() : server = new HttpServer(); 16 Server() : server = new HttpServer();
16 17
17 void start() { 18 void start() {
18 server.listen("127.0.0.1", 0); 19 server.listen("127.0.0.1", 0);
19 server.defaultRequestHandler = 20 server.defaultRequestHandler =
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 main() { 262 main() {
262 testUrlUserInfo(); 263 testUrlUserInfo();
263 testBasicNoCredentials(); 264 testBasicNoCredentials();
264 testBasicCredentials(); 265 testBasicCredentials();
265 testBasicAuthenticateCallback(); 266 testBasicAuthenticateCallback();
266 // These teste are not normally run. They can be used for locally 267 // These teste are not normally run. They can be used for locally
267 // testing with another web server (e.g. Apache). 268 // testing with another web server (e.g. Apache).
268 //testLocalServerBasic(); 269 //testLocalServerBasic();
269 //testLocalServerDigest(); 270 //testLocalServerDigest();
270 } 271 }
OLDNEW
« no previous file with comments | « tests/standalone/io/http_advanced_test.dart ('k') | tests/standalone/io/http_connection_close_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698