未验证 提交 5b2698a9 编写于 作者: O openharmony_ci 提交者: Gitee

!7129 网络用例整改,删除完全重复用例

Merge pull request !7129 from zhangfuzhi/monthly_20221018
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
*/ */
import net_Http from '@ohos.net.http'; import net_Http from '@ohos.net.http';
import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from '@ohos/hypium' import { describe, expect, it } from '@ohos/hypium'
export default function Http2Test() { export default function Http2Test() {
describe('Http2Test', function () { describe('Http2Test', function () {
...@@ -25,10 +25,11 @@ export default function Http2Test() { ...@@ -25,10 +25,11 @@ export default function Http2Test() {
* @tc.desc usingCache test * @tc.desc usingCache test
*/ */
it('Telephony_NETSTACK_Http2TestBasicGet_0100', 0, async function (done) { it('Telephony_NETSTACK_Http2TestBasicGet_0100', 0, async function (done) {
let http = net_Http.createHttp() let http = net_Http.createHttp();
http.request("https://www.zhihu.com", { http.request("https://www.zhihu.com", {
usingProtocol: net_Http.HttpProtocol.HTTP1_1 usingProtocol: net_Http.HttpProtocol.HTTP1_1
}).then(function (data) { }).then(function (data) {
http.destroy();
expect(data.responseCode === net_Http.ResponseCode.OK).assertTrue(); expect(data.responseCode === net_Http.ResponseCode.OK).assertTrue();
done(); done();
}); });
...@@ -40,10 +41,11 @@ export default function Http2Test() { ...@@ -40,10 +41,11 @@ export default function Http2Test() {
* @tc.desc usingCache test * @tc.desc usingCache test
*/ */
it('Telephony_NETSTACK_Http2TestBasicGet_0200', 0, async function (done) { it('Telephony_NETSTACK_Http2TestBasicGet_0200', 0, async function (done) {
let http = net_Http.createHttp() let http = net_Http.createHttp();
http.request("https://www.zhihu.com", { http.request("https://www.zhihu.com", {
usingProtocol: net_Http.HttpProtocol.HTTP2 usingProtocol: net_Http.HttpProtocol.HTTP2
}).then(function (data) { }).then(function (data) {
http.destroy();
console.info("Telephony_NETSTACK_Http2TestBasicGet_0200" + JSON.stringify(data)); console.info("Telephony_NETSTACK_Http2TestBasicGet_0200" + JSON.stringify(data));
expect(data.responseCode === net_Http.ResponseCode.OK).assertTrue(); expect(data.responseCode === net_Http.ResponseCode.OK).assertTrue();
done(); done();
...@@ -56,8 +58,9 @@ export default function Http2Test() { ...@@ -56,8 +58,9 @@ export default function Http2Test() {
* @tc.desc usingCache test * @tc.desc usingCache test
*/ */
it('Telephony_NETSTACK_Http2TestBasicGet_0300', 0, async function (done) { it('Telephony_NETSTACK_Http2TestBasicGet_0300', 0, async function (done) {
let http = net_Http.createHttp() let http = net_Http.createHttp();
http.request("https://www.zhihu.com").then(function (data) { http.request("https://www.zhihu.com").then(function (data) {
http.destroy();
console.info("Telephony_NETSTACK_Http2TestBasicGet_0300" + JSON.stringify(data)); console.info("Telephony_NETSTACK_Http2TestBasicGet_0300" + JSON.stringify(data));
expect(data.responseCode === net_Http.ResponseCode.OK).assertTrue(); expect(data.responseCode === net_Http.ResponseCode.OK).assertTrue();
done(); done();
...@@ -87,11 +90,11 @@ export default function Http2Test() { ...@@ -87,11 +90,11 @@ export default function Http2Test() {
done(); done();
}); });
it('Telephony_http_HttpTestPriority_0100', 0, async function(done){ it('Telephony_http_HttpTestPriority_0100', 0, async function (done) {
let CaseName = 'Telephony_http_HttpTestPriority_0100'; let CaseName = 'Telephony_http_HttpTestPriority_0100';
try { try {
let httpRequestOptions ={ let httpRequestOptions = {
method: net_http.RequestMethod.GET, method: net_Http.RequestMethod.GET,
extraData: null, extraData: null,
expectDataType: net_Http.HttpDataType.STRING, expectDataType: net_Http.HttpDataType.STRING,
header: "content-type': 'application/json", header: "content-type': 'application/json",
...@@ -99,15 +102,16 @@ export default function Http2Test() { ...@@ -99,15 +102,16 @@ export default function Http2Test() {
connectTimeout: 6000, connectTimeout: 6000,
priority: 100 priority: 100
} }
var httpRequest = net_http.createHttp(); var httpRequest = net_Http.createHttp();
httpRequest.request("https://httpbin/anything", httpRequestOptions, (err,data) => { httpRequest.request("https://www.zhihu.com", httpRequestOptions, (err, data) => {
console.info(CaseName + Json.stringify(err)+ "data"+ Json.stringify(data)); httpRequest.destroy();
expect(data.responseCode === net_http.ResponseCode.Ok).assertTrue(); console.info(CaseName + JSON.stringify(err) + "data" + JSON.stringify(data));
expect(data.responseCode === net_Http.ResponseCode.OK).assertTrue();
expect(data.resultType == net_Http.HttpDataType.STRING).assertTrue(); expect(data.resultType == net_Http.HttpDataType.STRING).assertTrue();
done(); done();
}); });
} catch(err){ } catch (err) {
console.info(CaseName+ "err=" + err) console.info(CaseName + "err=" + err);
done(); done();
return; return;
} }
......
...@@ -26,11 +26,11 @@ export default function HttpCacheTest() { ...@@ -26,11 +26,11 @@ export default function HttpCacheTest() {
*/ */
it('Telephony_NetStack_HttpTestBasicGet_0100', 0, async function(done){ it('Telephony_NetStack_HttpTestBasicGet_0100', 0, async function(done){
let CaseName = 'Telephony_NetStack_HttpTestBasicGet_0100';
let http = net_http.createHttp(); let http = net_http.createHttp();
http.request('https://httpbin.org/anything', { http.request('https://httpbin.org/anything', {
usingCache : true usingCache : true
}).then(function(data){ }).then(function(data){
http.destroy();
expect(data.responseCode === net_http.ResponseCode.OK).assertTrue(); expect(data.responseCode === net_http.ResponseCode.OK).assertTrue();
done(); done();
return; return;
...@@ -49,6 +49,7 @@ export default function HttpCacheTest() { ...@@ -49,6 +49,7 @@ export default function HttpCacheTest() {
http.request('https://httpbin.org/anything', { http.request('https://httpbin.org/anything', {
usingCache : false usingCache : false
}).then(function(data){ }).then(function(data){
http.destroy();
console.info(CaseName + JSON.stringify(data)); console.info(CaseName + JSON.stringify(data));
expect(data.responseCode === net_http.ResponseCode.OK).assertTrue(); expect(data.responseCode === net_http.ResponseCode.OK).assertTrue();
done(); done();
...@@ -70,6 +71,7 @@ export default function HttpCacheTest() { ...@@ -70,6 +71,7 @@ export default function HttpCacheTest() {
usingCache : true usingCache : true
}).then(function (){ }).then(function (){
cache.flush().then(function (data){ cache.flush().then(function (data){
http.destroy();
console.info(CaseName + JSON.stringify(data)); console.info(CaseName + JSON.stringify(data));
expect(data === undefined).assertTrue(); expect(data === undefined).assertTrue();
done(); done();
...@@ -92,6 +94,7 @@ export default function HttpCacheTest() { ...@@ -92,6 +94,7 @@ export default function HttpCacheTest() {
usingCache : true usingCache : true
}).then(function (){ }).then(function (){
cache.flush(function (data){ cache.flush(function (data){
http.destroy();
console.info(CaseName + JSON.stringify(data)); console.info(CaseName + JSON.stringify(data));
expect(data === undefined).assertTrue(); expect(data === undefined).assertTrue();
done(); done();
...@@ -114,6 +117,7 @@ export default function HttpCacheTest() { ...@@ -114,6 +117,7 @@ export default function HttpCacheTest() {
usingCache : true usingCache : true
}).then(function (){ }).then(function (){
cache.delete().then(function (data){ cache.delete().then(function (data){
http.destroy();
console.info(CaseName + JSON.stringify(data)); console.info(CaseName + JSON.stringify(data));
expect(data === undefined).assertTrue(); expect(data === undefined).assertTrue();
done(); done();
...@@ -136,6 +140,7 @@ export default function HttpCacheTest() { ...@@ -136,6 +140,7 @@ export default function HttpCacheTest() {
usingCache : true usingCache : true
}).then(function (){ }).then(function (){
cache.delete(function (data){ cache.delete(function (data){
http.destroy();
console.info(CaseName + JSON.stringify(data)); console.info(CaseName + JSON.stringify(data));
expect(data === undefined).assertTrue(); expect(data === undefined).assertTrue();
done(); done();
......
...@@ -14,10 +14,11 @@ ...@@ -14,10 +14,11 @@
*/ */
import netHttp from '@ohos.net.http'; import netHttp from '@ohos.net.http';
import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from '@ohos/hypium' import { describe, expect, it } from '@ohos/hypium'
export default function Telephony_NETSTACK_HTTPTest() { export default function Telephony_NETSTACK_HTTPTest() {
describe('Telephony_NETSTACK_HTTPTest',function(){ describe('Telephony_NETSTACK_HTTPTest', function () {
/** /**
* @tc.number Telephony_NETSTACK_HttpTestBasicGet_0100 * @tc.number Telephony_NETSTACK_HttpTestBasicGet_0100
...@@ -25,9 +26,10 @@ describe('Telephony_NETSTACK_HTTPTest',function(){ ...@@ -25,9 +26,10 @@ describe('Telephony_NETSTACK_HTTPTest',function(){
* @tc.desc Function test` * @tc.desc Function test`
*/ */
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) {
http.destroy();
expect(data.responseCode === netHttp.ResponseCode.OK).assertTrue(); expect(data.responseCode === netHttp.ResponseCode.OK).assertTrue();
done(); done();
}); });
...@@ -39,12 +41,14 @@ describe('Telephony_NETSTACK_HTTPTest',function(){ ...@@ -39,12 +41,14 @@ describe('Telephony_NETSTACK_HTTPTest',function(){
* @tc.desc Function test` * @tc.desc Function test`
*/ */
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) {
http.destroy();
expect(data.responseCode === netHttp.ResponseCode.OK).assertTrue(); expect(data.responseCode === netHttp.ResponseCode.OK).assertTrue();
console.info(JSON.stringify(data)); console.info(JSON.stringify(data));
expect(JSON.parse(data.result)["user-agent"] === "libcurl-agent/1.0").assertTrue(); expect(data.result.toString().search("user-agent") != -1).assertTrue();
expect(data.result.toString().search("libcurl-agent/1.0") != -1).assertTrue();
done(); done();
}); });
}); });
...@@ -55,12 +59,14 @@ describe('Telephony_NETSTACK_HTTPTest',function(){ ...@@ -55,12 +59,14 @@ describe('Telephony_NETSTACK_HTTPTest',function(){
* @tc.desc Function test` * @tc.desc Function test`
*/ */
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 === netHttp.ResponseCode.OK).assertTrue() http.destroy();
console.info("NETSTACK ####" + JSON.stringify(JSON.parse(data.result))) expect(data.responseCode === netHttp.ResponseCode.OK).assertTrue();
expect(JSON.parse(data.result)["headers"]["Content-Type"] === "application/json").assertTrue() console.info("NETSTACK ####" + JSON.stringify(data.result));
expect(data.result.toString().search("Content-Type") != -1).assertTrue();
expect(data.result.toString().search("application/json") != -1).assertTrue();
done() done()
}); });
}); });
...@@ -71,14 +77,15 @@ describe('Telephony_NETSTACK_HTTPTest',function(){ ...@@ -71,14 +77,15 @@ describe('Telephony_NETSTACK_HTTPTest',function(){
* @tc.desc Function test` * @tc.desc Function test`
*/ */
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 : netHttp.RequestMethod.POST, method: netHttp.RequestMethod.POST,
extraData : "MineMine" extraData: "MineMine"
}).then(function(data){ }).then(function (data) {
expect(data.responseCode === netHttp.ResponseCode.OK).assertTrue() http.destroy();
expect(JSON.parse(data.result)["data"] === "MineMine").assertTrue() expect(data.responseCode === netHttp.ResponseCode.OK).assertTrue();
expect(data.result.toString().search("MineMine") != -1).assertTrue()
done(); done();
}); });
}); });
...@@ -89,14 +96,15 @@ describe('Telephony_NETSTACK_HTTPTest',function(){ ...@@ -89,14 +96,15 @@ describe('Telephony_NETSTACK_HTTPTest',function(){
* @tc.desc Function test` * @tc.desc Function test`
*/ */
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 : netHttp.RequestMethod.PUT, method: netHttp.RequestMethod.PUT,
extraData : "MineMine" extraData: "MineMine"
}).then(function(data){ }).then(function (data) {
expect(data.responseCode === netHttp.ResponseCode.OK).assertTrue() http.destroy();
expect(JSON.parse(data.result)["data"] === "MineMine").assertTrue() expect(data.responseCode === netHttp.ResponseCode.OK).assertTrue();
expect(data.result.toString().search("MineMine") != -1).assertTrue()
done(); done();
}); });
}); });
...@@ -107,11 +115,12 @@ describe('Telephony_NETSTACK_HTTPTest',function(){ ...@@ -107,11 +115,12 @@ describe('Telephony_NETSTACK_HTTPTest',function(){
* @tc.desc Function test` * @tc.desc Function test`
*/ */
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 === netHttp.ResponseCode.OK).assertTrue() http.destroy();
expect(data.cookies !== "").assertTrue() expect(data.responseCode === netHttp.ResponseCode.OK).assertTrue();
expect(data.cookies !== "").assertTrue();
done(); done();
}); });
}); });
...@@ -122,21 +131,26 @@ describe('Telephony_NETSTACK_HTTPTest',function(){ ...@@ -122,21 +131,26 @@ describe('Telephony_NETSTACK_HTTPTest',function(){
* @tc.desc Function test` * @tc.desc Function test`
*/ */
it('Telephony_NETSTACK_HttpTestEncode_0100', 0, function(done){ it('Telephony_NETSTACK_HttpTestEncode_0100', 0, function (done) {
let http = netHttp.createHttp() let http = netHttp.createHttp();
http.request("https://httpbin.org/response-headers?key1=val1&key2=val2",{ http.request("https://httpbin.org/response-headers?key1=val1&key2=val2", {
extraData : { extraData: {
"name1" : "mine1", "name1": "mine1",
"name2" : "mine2", "name2": "mine2",
} }
}).then(function(data){ }).then(function (data) {
expect(data.responseCode === netHttp.ResponseCode.OK).assertTrue() http.destroy();
expect(JSON.parse(data.result)["key1"] === "val1").assertTrue() expect(data.responseCode === netHttp.ResponseCode.OK).assertTrue();
expect(JSON.parse(data.result)["key2"] === "val2").assertTrue() expect(data.result.toString().search("key1") != -1).assertTrue()
expect(JSON.parse(data.result)["name1"] === "mine1").assertTrue() expect(data.result.toString().search("val1") != -1).assertTrue()
expect(JSON.parse(data.result)["name2"] === "mine2").assertTrue() expect(data.result.toString().search("key2") != -1).assertTrue()
expect(data.result.toString().search("val2") != -1).assertTrue()
expect(data.result.toString().search("name1") != -1).assertTrue()
expect(data.result.toString().search("mine1") != -1).assertTrue()
expect(data.result.toString().search("name2") != -1).assertTrue()
expect(data.result.toString().search("mine2") != -1).assertTrue()
done(); done();
}); });
}); });
}); });
} }
...@@ -14,131 +14,11 @@ ...@@ -14,131 +14,11 @@
* limitations under the License. * limitations under the License.
*/ */
import NetHttp from '@ohos.net.http';
import fetch from '@system.fetch'; import fetch from '@system.fetch';
import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from '@ohos/hypium' import { describe, it, expect } from '@ohos/hypium'
export default function Telephony_NetStack_HttpFetchTest() { export default function Telephony_NetStack_HttpFetchTest() {
describe("Telephony_NetStack_HttpFetchTest", function () { describe("Telephony_NetStack_HttpFetchTest", function () {
/**
* @tc.number Telephony_NetStack_HttpTestBasicGet_0100
* @tc.name 基本场景,测试能否GET一个网址
* @tc.desc function test
*/
it("Telephony_NetStack_HttpTestBasicGet_0100", 0, function (done) {
let http = NetHttp.createHttp()
http.request("https://httpbin.org/anything").then(function(data){
console.info("NetStack " + JSON.stringify(data));
expect(data.responseCode === NetHttp.ResponseCode.OK).assertTrue()
done();
})
});
/**
* @tc.number Telephony_NetStack_HttpTestUserAgent_0100
* @tc.name 返回用户代理
* @tc.desc function test
*/
it("Telephony_NetStack_HttpTestUserAgent_0100", 0, function (done) {
let http = NetHttp.createHttp()
http.request("https://httpbin.org/user-agent").then(function(data){
console.info("NetStack "+ JSON.stringify(data));
expect(data.responseCode === NetHttp.ResponseCode.OK).assertTrue()
expect(JSON.parse(data.result)["user-agent"] != undefined).assertTrue();
done();
})
});
/**
* @tc.number Telephony_NetStack_HttpTestHeader_0100
* @tc.name 返回Header
* @tc.desc function test
*/
it("Telephony_NetStack_HttpTestHeader_0100", 0, function (done) {
let http = NetHttp.createHttp()
http.request("https://httpbin.org/headers").then(function(data){
console.info("NetStack "+ JSON.stringify(data));
expect(data.responseCode === NetHttp.ResponseCode.OK).assertTrue()
console.info("NetStack "+JSON.stringify(JSON.parse(data.result)))
expect(JSON.parse(data.result)["headers"]["Content-Type"] === "application/json").assertTrue()
done();
})
});
/**
* @tc.number Telephony_NetStack_HttpTestPost_0100
* @tc.name 返回Post内容
* @tc.desc function test
*/
it("Telephony_NetStack_HttpTestPost_0100", 0, function (done) {
let http = NetHttp.createHttp()
http.request("https://httpbin.org/post" ,{
method : NetHttp.RequestMethod.POST,
extraData : "MineMine"
}).then(function(data){
console.info("NetStack "+JSON.stringify(data));
expect(data.responseCode === NetHttp.ResponseCode.OK).assertTrue()
expect(JSON.parse(data.result)["data"] === "MineMine").assertTrue()
done();
})
});
/**
* @tc.number Telephony_NetStack_HttpTestPut_0100
* @tc.name 返回Put内容
* @tc.desc function test
*/
it("Telephony_NetStack_HttpTestPut_0100", 0, function (done) {
let http = NetHttp.createHttp()
http.request("https://httpbin.org/put" ,{
method : NetHttp.RequestMethod.PUT,
extraData : "MineMine"
}).then(function(data){
console.info("NetStack "+JSON.stringify(data));
expect(data.responseCode === NetHttp.ResponseCode.OK).assertTrue()
expect(JSON.parse(data.result)["data"] === "MineMine").assertTrue()
done();
})
});
/**
* @tc.number Telephony_NetStack_HttpTestCookies_0100
* @tc.name 返回Cookies内容
* @tc.desc function test
*/
it("Telephony_NetStack_HttpTestCookies_0100", 0, function (done) {
let http = NetHttp.createHttp()
http.request("https://httpbin.org/cookies/set/name/value").then(function(data){
console.info("NetStack "+JSON.stringify(data))
expect(data.responseCode === NetHttp.ResponseCode.OK).assertTrue()
expect(data.cookies !== "").assertTrue()
done();
})
});
/**
* @tc.number Telephony_NetStack_HttpTestUrlEncode_0100
* @tc.name 返回Cookies内容
* @tc.desc function test
*/
it("Telephony_NetStack_HttpTestUrlEncode_0100", 0, function (done) {
let http = NetHttp.createHttp()
http.request("https://httpbin.org/response-headers?key1=val1&key2=val2" ,{
extraData : {
"name1" : "mine1",
"name2" : "mine2",
}
}).then(function(data){
console.info("NetStack "+JSON.stringify(data));
expect(data.responseCode === NetHttp.ResponseCode.OK).assertTrue()
expect(JSON.parse(data.result)["key1"] === "val1").assertTrue()
expect(JSON.parse(data.result)["key2"] === "val2").assertTrue()
expect(JSON.parse(data.result)["name1"] === "mine1").assertTrue()
expect(JSON.parse(data.result)["name2"] === "mine2").assertTrue()
done();
})
});
/** /**
* @tc.number Telephony_NetStack_HttpTestFetchBasicGet_0100 * @tc.number Telephony_NetStack_HttpTestFetchBasicGet_0100
...@@ -175,7 +55,7 @@ describe("Telephony_NetStack_HttpFetchTest", function () { ...@@ -175,7 +55,7 @@ describe("Telephony_NetStack_HttpFetchTest", function () {
success : function(data){ success : function(data){
console.info("NetStack fetch success "+ JSON.stringify(data)) console.info("NetStack fetch success "+ JSON.stringify(data))
expect(data.code === 200).assertTrue() expect(data.code === 200).assertTrue()
expect(JSON.parse(data.data)["user-agent"] != undefined).assertTrue(); expect(JSON.parse(data.data.toString())["user-agent"] == "libcurl-agent/1.0").assertTrue();
done(); done();
}, },
fail : function(){ fail : function(){
...@@ -197,11 +77,11 @@ describe("Telephony_NetStack_HttpFetchTest", function () { ...@@ -197,11 +77,11 @@ describe("Telephony_NetStack_HttpFetchTest", function () {
it("Telephony_NetStack_HttpTestFetchUserAgent_0200", 0, function (done) { it("Telephony_NetStack_HttpTestFetchUserAgent_0200", 0, function (done) {
fetch.fetch({ fetch.fetch({
url : "https://httpbin.org/user-agent", url : "https://httpbin.org/user-agent",
responseType : "JSON", responseType : "json",
success : function(data){ success : function(data){
console.info("NetStack fetch success "+ JSON.stringify(data)) console.info("NetStack fetch success "+ JSON.stringify(data))
expect(data.code === 200).assertTrue() expect(data.code === 200).assertTrue()
expect(data.data["user-agent"] != undefined).assertTrue(); expect(data.data["user-agent"] == "libcurl-agent/1.0").assertTrue();
done(); done();
}, },
fail : function(){ fail : function(){
...@@ -226,7 +106,7 @@ describe("Telephony_NetStack_HttpFetchTest", function () { ...@@ -226,7 +106,7 @@ describe("Telephony_NetStack_HttpFetchTest", function () {
success : function(data){ success : function(data){
console.info("NetStack Fetch Success "+ JSON.stringify(data)) console.info("NetStack Fetch Success "+ JSON.stringify(data))
expect(data.code === 200).assertTrue() expect(data.code === 200).assertTrue()
expect(JSON.parse(data.data)["headers"]["Content-Type"] === "application/json").assertTrue() expect(JSON.parse(data.data.toString())["headers"]["Content-Type"] === "application/json").assertTrue()
done(); done();
}, },
fail : function(){ fail : function(){
...@@ -248,7 +128,7 @@ describe("Telephony_NetStack_HttpFetchTest", function () { ...@@ -248,7 +128,7 @@ describe("Telephony_NetStack_HttpFetchTest", function () {
it("Telephony_NetStack_HttpTestFetchHeader_0200", 0, function (done) { it("Telephony_NetStack_HttpTestFetchHeader_0200", 0, function (done) {
fetch.fetch({ fetch.fetch({
url : "https://httpbin.org/headers", url : "https://httpbin.org/headers",
responseType : "JSON", responseType : "json",
success : function(data){ success : function(data){
console.info("NetStack Fetch Success "+ JSON.stringify(data)) console.info("NetStack Fetch Success "+ JSON.stringify(data))
expect(data.code === 200).assertTrue() expect(data.code === 200).assertTrue()
...@@ -279,7 +159,7 @@ describe("Telephony_NetStack_HttpFetchTest", function () { ...@@ -279,7 +159,7 @@ describe("Telephony_NetStack_HttpFetchTest", function () {
success : function(data){ success : function(data){
console.info("NetStack "+ JSON.stringify(data)) console.info("NetStack "+ JSON.stringify(data))
expect(data.code === 200).assertTrue() expect(data.code === 200).assertTrue()
expect(JSON.parse(data.data)["data"] === "MineMine").assertTrue() expect(JSON.parse(data.data.toString())["data"] === "MineMine").assertTrue()
done(); done();
}, },
fail : function(){ fail : function(){
...@@ -303,7 +183,7 @@ describe("Telephony_NetStack_HttpFetchTest", function () { ...@@ -303,7 +183,7 @@ describe("Telephony_NetStack_HttpFetchTest", function () {
url : "https://httpbin.org/post", url : "https://httpbin.org/post",
method : "POST", method : "POST",
data : "MineMine", data : "MineMine",
responseType : "JSON", responseType : "json",
success : function(data){ success : function(data){
console.info("NetStack "+ JSON.stringify(data)) console.info("NetStack "+ JSON.stringify(data))
expect(data.code === 200).assertTrue() expect(data.code === 200).assertTrue()
...@@ -334,7 +214,7 @@ describe("Telephony_NetStack_HttpFetchTest", function () { ...@@ -334,7 +214,7 @@ describe("Telephony_NetStack_HttpFetchTest", function () {
success : function(data){ success : function(data){
console.info("NetStack "+ JSON.stringify(data)) console.info("NetStack "+ JSON.stringify(data))
expect(data.code === 200).assertTrue() expect(data.code === 200).assertTrue()
expect(JSON.parse(data.data)["data"] === "MineMine").assertTrue() expect(JSON.parse(data.data.toString())["data"] === "MineMine").assertTrue()
done(); done();
}, },
fail : function(){ fail : function(){
...@@ -358,7 +238,7 @@ describe("Telephony_NetStack_HttpFetchTest", function () { ...@@ -358,7 +238,7 @@ describe("Telephony_NetStack_HttpFetchTest", function () {
url : "https://httpbin.org/put", url : "https://httpbin.org/put",
method : "PUT", method : "PUT",
data : "MineMine", data : "MineMine",
responseType : "JSON", responseType : "json",
success : function(data){ success : function(data){
console.info("NetStack "+ JSON.stringify(data)) console.info("NetStack "+ JSON.stringify(data))
expect(data.code === 200).assertTrue() expect(data.code === 200).assertTrue()
...@@ -391,10 +271,10 @@ describe("Telephony_NetStack_HttpFetchTest", function () { ...@@ -391,10 +271,10 @@ describe("Telephony_NetStack_HttpFetchTest", function () {
success : function(data){ success : function(data){
console.info("NetStack "+JSON.stringify(data)) console.info("NetStack "+JSON.stringify(data))
expect(data.code === 200).assertTrue() expect(data.code === 200).assertTrue()
expect(JSON.parse(data.data)["key1"] === "val1").assertTrue() expect(JSON.parse(data.data.toString())["key1"] === "val1").assertTrue()
expect(JSON.parse(data.data)["key2"] === "val2").assertTrue() expect(JSON.parse(data.data.toString())["key2"] === "val2").assertTrue()
expect(JSON.parse(data.data)["name1"] === "mine1").assertTrue() expect(JSON.parse(data.data.toString())["name1"] === "mine1").assertTrue()
expect(JSON.parse(data.data)["name2"] === "mine2").assertTrue() expect(JSON.parse(data.data.toString())["name2"] === "mine2").assertTrue()
done(); done();
}, },
fail : function(){ fail : function(){
...@@ -420,7 +300,7 @@ describe("Telephony_NetStack_HttpFetchTest", function () { ...@@ -420,7 +300,7 @@ describe("Telephony_NetStack_HttpFetchTest", function () {
"name1" : "mine1", "name1" : "mine1",
"name2" : "mine2", "name2" : "mine2",
}, },
responseType : "JSON", responseType : "json",
success : function(data){ success : function(data){
console.info("NetStack "+JSON.stringify(data)) console.info("NetStack "+JSON.stringify(data))
expect(data.code === 200).assertTrue() expect(data.code === 200).assertTrue()
...@@ -440,5 +320,5 @@ describe("Telephony_NetStack_HttpFetchTest", function () { ...@@ -440,5 +320,5 @@ describe("Telephony_NetStack_HttpFetchTest", function () {
} }
}) })
}); });
}); });
} }
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册