提交 69eaa609 编写于 作者: G gaoxi

modify error

Signed-off-by: Ngaoxi <gaoxi785@huawei.com>
上级 7fb31083
...@@ -27,7 +27,7 @@ describe('Telephony_NETSTACK_HTTPTest',function(){ ...@@ -27,7 +27,7 @@ describe('Telephony_NETSTACK_HTTPTest',function(){
it('Telephony_NETSTACK_HttpTestBasicGet_0100', 0, function(done){ it('Telephony_NETSTACK_HttpTestBasicGet_0100', 0, function(done){
let http = netHttp.createHttp() let http = netHttp.createHttp()
http.request("https://httpbin.org/anything").then(function(data){ http.request("https://httpbin.org/anything").then(function(data){
expect(data.responseCode === net_http.ResponseCode.OK).assertTrue(); expect(data.responseCode === netHttp.ResponseCode.OK).assertTrue();
done(); done();
}) })
}); });
...@@ -41,7 +41,7 @@ describe('Telephony_NETSTACK_HTTPTest',function(){ ...@@ -41,7 +41,7 @@ describe('Telephony_NETSTACK_HTTPTest',function(){
it('Telephony_NETSTACK_HttpTestUserAgent_0100', 0, function(done){ it('Telephony_NETSTACK_HttpTestUserAgent_0100', 0, function(done){
let http = netHttp.createHttp() let http = netHttp.createHttp()
http.request("https://httpbin.org/user-agent").then(function(data){ http.request("https://httpbin.org/user-agent").then(function(data){
expect(data.responseCode === net_http.ResponseCode.OK).assertTrue(); expect(data.responseCode === netHttp.ResponseCode.OK).assertTrue();
expect(JSON.parse(data.result)["user-agent"] === "libcurl-agent/1.0").assertTrue(); expect(JSON.parse(data.result)["user-agent"] === "libcurl-agent/1.0").assertTrue();
done(); done();
}) })
...@@ -56,7 +56,7 @@ describe('Telephony_NETSTACK_HTTPTest',function(){ ...@@ -56,7 +56,7 @@ describe('Telephony_NETSTACK_HTTPTest',function(){
it('Telephony_NETSTACK_HttpTestHeader_0100', 0, function(done){ it('Telephony_NETSTACK_HttpTestHeader_0100', 0, function(done){
let http = netHttp.createHttp(); let http = netHttp.createHttp();
http.request("https://httpbin.org/headers").then(function(data){ http.request("https://httpbin.org/headers").then(function(data){
expect(data.responseCode === net_http.ResponseCode.OK).assertTrue() expect(data.responseCode === netHttp.ResponseCode.OK).assertTrue()
console.info("NETSTACK ####" + JSON.stringify(JSON.parse(data.result))) console.info("NETSTACK ####" + JSON.stringify(JSON.parse(data.result)))
expect(JSON.parse(data.result)["headers"]["Content-Type"] === "application/json").assertTrue() expect(JSON.parse(data.result)["headers"]["Content-Type"] === "application/json").assertTrue()
done() done()
...@@ -72,10 +72,10 @@ describe('Telephony_NETSTACK_HTTPTest',function(){ ...@@ -72,10 +72,10 @@ describe('Telephony_NETSTACK_HTTPTest',function(){
it('Telephony_NETSTACK_HttpTestPost_0100', 0, function(done){ it('Telephony_NETSTACK_HttpTestPost_0100', 0, function(done){
let http = netHttp.createHttp() let http = netHttp.createHttp()
http.request("https://httpbin.org/post" ,{ http.request("https://httpbin.org/post" ,{
method : net_http.RequestMethod.POST, method : netHttp.RequestMethod.POST,
extraData : "MineMine" extraData : "MineMine"
}).then(function(data){ }).then(function(data){
expect(data.responseCode === net_http.ResponseCode.OK).assertTrue() expect(data.responseCode === netHttp.ResponseCode.OK).assertTrue()
expect(JSON.parse(data.result)["data"] === "MineMine").assertTrue() expect(JSON.parse(data.result)["data"] === "MineMine").assertTrue()
done(); done();
}) })
...@@ -90,10 +90,10 @@ describe('Telephony_NETSTACK_HTTPTest',function(){ ...@@ -90,10 +90,10 @@ describe('Telephony_NETSTACK_HTTPTest',function(){
it('Telephony_NETSTACK_HttpTestPut_0100', 0, function(done){ it('Telephony_NETSTACK_HttpTestPut_0100', 0, function(done){
let http = netHttp.createHttp() let http = netHttp.createHttp()
http.request("https://httpbin.org/put" ,{ http.request("https://httpbin.org/put" ,{
method : net_http.RequestMethod.PUT, method : netHttp.RequestMethod.PUT,
extraData : "MineMine" extraData : "MineMine"
}).then(function(data){ }).then(function(data){
expect(data.responseCode === net_http.ResponseCode.OK).assertTrue() expect(data.responseCode === netHttp.ResponseCode.OK).assertTrue()
expect(JSON.parse(data.result)["data"] === "MineMine").assertTrue() expect(JSON.parse(data.result)["data"] === "MineMine").assertTrue()
done(); done();
}) })
...@@ -108,7 +108,7 @@ describe('Telephony_NETSTACK_HTTPTest',function(){ ...@@ -108,7 +108,7 @@ describe('Telephony_NETSTACK_HTTPTest',function(){
it('Telephony_NETSTACK_HttpTestCookies_0100', 0, function(done){ it('Telephony_NETSTACK_HttpTestCookies_0100', 0, function(done){
let http = netHttp.createHttp() let http = netHttp.createHttp()
http.request("https://httpbin.org/cookies/set/name/value").then(function(data){ http.request("https://httpbin.org/cookies/set/name/value").then(function(data){
expect(data.responseCode === net_http.ResponseCode.OK).assertTrue() expect(data.responseCode === netHttp.ResponseCode.OK).assertTrue()
expect(data.cookies !== "").assertTrue() expect(data.cookies !== "").assertTrue()
done(); done();
}) })
...@@ -128,7 +128,7 @@ describe('Telephony_NETSTACK_HTTPTest',function(){ ...@@ -128,7 +128,7 @@ describe('Telephony_NETSTACK_HTTPTest',function(){
"name2" : "mine2", "name2" : "mine2",
} }
}).then(function(data){ }).then(function(data){
expect(data.responseCode === net_http.ResponseCode.OK).assertTrue() expect(data.responseCode === netHttp.ResponseCode.OK).assertTrue()
expect(JSON.parse(data.result)["key1"] === "val1").assertTrue() expect(JSON.parse(data.result)["key1"] === "val1").assertTrue()
expect(JSON.parse(data.result)["key2"] === "val2").assertTrue() expect(JSON.parse(data.result)["key2"] === "val2").assertTrue()
expect(JSON.parse(data.result)["name1"] === "mine1").assertTrue() expect(JSON.parse(data.result)["name1"] === "mine1").assertTrue()
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册