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

Unified Diff: chrome/test/data/webui/net_internals/log_view_painter.js

Issue 2853383003: Prune some unused log entries. (Closed)
Patch Set: . 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 | « chrome/browser/resources/net_internals/log_view_painter.js ('k') | net/log/net_log_event_type_list.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/webui/net_internals/log_view_painter.js
diff --git a/chrome/test/data/webui/net_internals/log_view_painter.js b/chrome/test/data/webui/net_internals/log_view_painter.js
index e0b962817bc5abe14a0bc1f3c5d3d36e912cebf5..53d7c9a9a20d2a50cd191faabec3b520bfbe4632 100644
--- a/chrome/test/data/webui/net_internals/log_view_painter.js
+++ b/chrome/test/data/webui/net_internals/log_view_painter.js
@@ -201,7 +201,6 @@ TEST_F('NetInternalsTest', 'netInternalsLogViewPainterPrintAsText', function() {
runTestCase(painterTestSpdyURLRequestStripCookies());
runTestCase(painterTestExtraCustomParameter());
runTestCase(painterTestMissingCustomParameter());
- runTestCase(painterTestSSLVersionFallback());
runTestCase(painterTestInProgressURLRequest());
runTestCase(painterTestBaseTime());
@@ -2059,74 +2058,6 @@ function painterTestMissingCustomParameter() {
}
/**
- * Tests the formatting for an SSL version fallback event.
- */
-function painterTestSSLVersionFallback() {
- var testCase = {};
- testCase.tickOffset = '1337911098400';
-
- testCase.logEntries = [
- {
- 'params': {
- 'host_and_port': 'www-927.ibm.com:443',
- 'net_error': -107,
- 'version_after': 0x301,
- 'version_before': 0x302
- },
- 'phase': EventPhase.PHASE_NONE,
- 'source': {
- 'id': 124,
- 'type': EventSourceType.URL_REQUEST
- },
- 'time': '1119062679',
- 'type': EventType.SSL_VERSION_FALLBACK
- },
- {
- 'params': {
- 'host_and_port': 'www-927.ibm.com:443',
- 'net_error': -107,
- 'version_after': 0x300,
- 'version_before': 0x301
- },
- 'phase': EventPhase.PHASE_NONE,
- 'source': {
- 'id': 124,
- 'type': EventSourceType.URL_REQUEST
- },
- 'time': '1119062850',
- 'type': EventType.SSL_VERSION_FALLBACK
- },
- {
- 'params': {
- 'version_after': 0x123456,
- 'version_before': 0x300
- },
- 'phase': EventPhase.PHASE_NONE,
- 'source': {
- 'id': 124,
- 'type': EventSourceType.URL_REQUEST
- },
- 'time': '1119062850',
- 'type': EventType.SSL_VERSION_FALLBACK
- },
- ];
-
- testCase.expectedText =
-'t=1339030161079 [st= 0] SSL_VERSION_FALLBACK\n' +
-' --> TLS 1.1 ==> TLS 1.0\n' +
-' --> host_and_port = "www-927.ibm.com:443"\n' +
-' --> net_error = -107 (ERR_SSL_PROTOCOL_ERROR)\n' +
-'t=1339030161250 [st=171] SSL_VERSION_FALLBACK\n' +
-' --> TLS 1.0 ==> SSL 3.0\n' +
-' --> host_and_port = "www-927.ibm.com:443"\n' +
-' --> net_error = -107 (ERR_SSL_PROTOCOL_ERROR)\n' +
-'t=1339030161250 [st=171] SSL_VERSION_FALLBACK\n' +
-' --> SSL 3.0 ==> SSL 0x123456';
-
- return testCase;
-}
-
-/**
* Tests the formatting of a URL request that was just finishing up when
* net-internals was opened.
*/
« no previous file with comments | « chrome/browser/resources/net_internals/log_view_painter.js ('k') | net/log/net_log_event_type_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698