Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
099c7296
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
099c7296
编写于
9月 24, 2008
作者:
C
chegar
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6621697: Problem with file test/sun/net/www/http/ChunkedInputStream/test.txt
Reviewed-by: michaelm
上级
8d993f70
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
74 addition
and
69 deletion
+74
-69
test/sun/net/www/http/ChunkedInputStream/ChunkedEncodingTest.java
.../net/www/http/ChunkedInputStream/ChunkedEncodingTest.java
+74
-67
test/sun/net/www/http/ChunkedInputStream/test.txt
test/sun/net/www/http/ChunkedInputStream/test.txt
+0
-2
未找到文件。
test/sun/net/www/http/ChunkedInputStream/ChunkedEncodingTest.java
浏览文件 @
099c7296
/*
* Copyright 2004-200
7
Sun Microsystems, Inc. All Rights Reserved.
* Copyright 2004-200
8
Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -24,8 +24,6 @@
/**
* @test
* @bug 4333920
* @library ../../../../../sun/net/www/httptest/
* @build HttpCallback HttpServer ClosedChannelList HttpTransaction
* @run main ChunkedEncodingTest
* @summary ChunkedEncodingTest unit test
*/
...
...
@@ -33,84 +31,93 @@
import
java.io.*
;
import
java.net.*
;
import
java.security.*
;
import
com.sun.net.httpserver.HttpServer
;
import
com.sun.net.httpserver.HttpHandler
;
import
com.sun.net.httpserver.HttpExchange
;
import
static
java
.
lang
.
System
.
out
;
public
class
ChunkedEncodingTest
implements
HttpCallback
{
private
static
String
FNPrefix
;
private
String
[]
respBody
=
new
String
[
52
];
private
byte
[][]
bufs
=
new
byte
[
52
][
8
*
1024
];
private
static
MessageDigest
md5
;
private
static
byte
[]
file1Mac
,
file2Mac
;
public
void
request
(
HttpTransaction
req
)
{
public
class
ChunkedEncodingTest
{
private
static
MessageDigest
serverDigest
,
clientDigest
;
private
static
byte
[]
serverMac
,
clientMac
;
static
void
client
(
String
u
)
throws
Exception
{
URL
url
=
new
URL
(
u
);
out
.
println
(
"client opening connection to: "
+
u
);
URLConnection
urlc
=
url
.
openConnection
();
DigestInputStream
dis
=
new
DigestInputStream
(
urlc
.
getInputStream
(),
clientDigest
);
while
(
dis
.
read
()
!=
-
1
);
clientMac
=
dis
.
getMessageDigest
().
digest
();
dis
.
close
();
}
public
static
void
test
()
{
HttpServer
server
=
null
;
try
{
FileInputStream
fis
=
new
FileInputStream
(
FNPrefix
+
"test.txt"
);
DigestInputStream
dis
=
null
;
md5
.
reset
();
dis
=
new
DigestInputStream
(
fis
,
md5
);
for
(
int
i
=
0
;
i
<
52
;
i
++)
{
int
n
=
dis
.
read
(
bufs
[
i
]);
respBody
[
i
]
=
new
String
(
bufs
[
i
],
0
,
n
);
serverDigest
=
MessageDigest
.
getInstance
(
"MD5"
);
clientDigest
=
MessageDigest
.
getInstance
(
"MD5"
);
server
=
startHttpServer
();
int
port
=
server
.
getAddress
().
getPort
();
out
.
println
(
"Server listening on port: "
+
port
);
client
(
"http://localhost:"
+
port
+
"/chunked/"
);
if
(!
MessageDigest
.
isEqual
(
clientMac
,
serverMac
))
{
throw
new
RuntimeException
(
"Data received is NOT equal to the data sent"
);
}
file1Mac
=
dis
.
getMessageDigest
().
digest
();
dis
.
close
();
req
.
setResponseEntityBody
(
respBody
);
req
.
sendResponse
(
200
,
"OK"
);
req
.
orderlyClose
();
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
catch
(
Exception
e
)
{
throw
new
RuntimeException
(
e
);
}
finally
{
if
(
server
!=
null
)
server
.
stop
(
0
);
}
}
static
void
read
(
InputStream
is
)
throws
IOException
{
int
c
;
System
.
out
.
println
(
"reading"
);
DigestInputStream
dis
=
null
;
md5
.
reset
();
dis
=
new
DigestInputStream
(
is
,
md5
);
while
((
c
=
dis
.
read
())
!=
-
1
);
file2Mac
=
dis
.
getMessageDigest
().
digest
();
dis
.
close
();
System
.
out
.
println
(
"finished reading"
);
public
static
void
main
(
String
[]
args
)
{
test
();
}
static
void
client
(
String
u
)
throws
Exception
{
URL
url
=
new
URL
(
u
);
System
.
out
.
println
(
"client opening connection to: "
+
u
);
URLConnection
urlc
=
url
.
openConnection
();
InputStream
is
=
urlc
.
getInputStream
();
read
(
is
);
is
.
close
();
/**
* Http Server
*/
static
HttpServer
startHttpServer
()
throws
IOException
{
HttpServer
httpServer
=
HttpServer
.
create
(
new
InetSocketAddress
(
0
),
0
);
HttpHandler
httpHandler
=
new
SimpleHandler
();
httpServer
.
createContext
(
"/chunked/"
,
httpHandler
);
httpServer
.
start
();
return
httpServer
;
}
static
HttpServer
server
;
static
class
SimpleHandler
implements
HttpHandler
{
static
byte
[]
baMessage
;
final
static
int
CHUNK_SIZE
=
8
*
1024
;
final
static
int
MESSAGE_LENGTH
=
52
*
CHUNK_SIZE
;
public
static
void
test
()
throws
Exception
{
try
{
FNPrefix
=
System
.
getProperty
(
"test.src"
,
"."
)+
"/"
;
md5
=
MessageDigest
.
getInstance
(
"MD5"
);
server
=
new
HttpServer
(
new
ChunkedEncodingTest
(),
1
,
10
,
0
);
System
.
out
.
println
(
"Server: listening on port: "
+
server
.
getLocalPort
());
client
(
"http://localhost:"
+
server
.
getLocalPort
()+
"/d1/foo.html"
);
}
catch
(
Exception
e
)
{
if
(
server
!=
null
)
{
server
.
terminate
();
}
throw
e
;
}
if
(!
MessageDigest
.
isEqual
(
file1Mac
,
file2Mac
))
{
except
(
"The file sent by server is different from the original file"
);
static
{
baMessage
=
new
byte
[
MESSAGE_LENGTH
];
for
(
int
i
=
0
;
i
<
MESSAGE_LENGTH
;
i
++)
baMessage
[
i
]
=
(
byte
)
i
;
}
server
.
terminate
();
}
@Override
public
void
handle
(
HttpExchange
t
)
throws
IOException
{
InputStream
is
=
t
.
getRequestBody
();
while
(
is
.
read
()
!=
-
1
);
is
.
close
();
public
static
void
main
(
String
[]
args
)
throws
Exception
{
test
();
}
t
.
sendResponseHeaders
(
200
,
MESSAGE_LENGTH
);
OutputStream
os
=
t
.
getResponseBody
();
DigestOutputStream
dos
=
new
DigestOutputStream
(
os
,
serverDigest
);
public
static
void
except
(
String
s
)
{
server
.
terminate
();
throw
new
RuntimeException
(
s
);
int
offset
=
0
;
for
(
int
i
=
0
;
i
<
52
;
i
++)
{
dos
.
write
(
baMessage
,
offset
,
CHUNK_SIZE
);
offset
+=
CHUNK_SIZE
;
}
serverMac
=
serverDigest
.
digest
();
os
.
close
();
t
.
close
();
}
}
}
test/sun/net/www/http/ChunkedInputStream/test.txt
已删除
100644 → 0
浏览文件 @
8d993f70
因为 它太大了无法显示 source diff 。你可以改为
查看blob
。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录