gpt4 book ai didi

testing - Node.js 测试 RESTful API(vows.js?)

转载 作者:搜寻专家 更新时间:2023-10-31 22:18:55 25 4
gpt4 key购买 nike

在测试我在 node.js 中创建的 RESTful api 时,我真的可以接受一些建议。那里有太多的框架,我不知所措。我的测试知识通常不够好,这就是我尝试编写这些测试的原因。我试过 vows.js,它看起来不错,但我不知道如何合并我的 API 测试,我需要某种客户端。我只需要一个简单的帖子示例来测试登录系统。

最佳答案

6个月后更新

誓言很烂。使用 mocha

原创

更新为 vow-is代码

这是来自 vows-is examples folder 的 vows-is 示例.

// simple HTTP
// Run with node example/simple-http.js

var express = require("express");
is = require("../src/vows-is.js");

is.config({
"server": {
"factory": function _factory(cb) {
var app = express.createServer();

app.get("/", function(req, res) {
res.send("hello world");
})

app.listen(3000);

cb(app);
},
"uri": "http://localhost:3000",
"kill": function _kill(app) {
app.close();
}
}
});

is.suite("http request test").batch()

.context("a request to GET /")
.topic.is.a.request("GET /")
.vow.it.should.have.status(200)
.vow.it.should.have
.header("content-type", "text/html; charset=utf-8")
.context("contains a body that")
.topic.is.property('body')
.vow.it.should.be.ok
.vow.it.should.include.string("hello world")

.suite().run({
reporter: is.reporter
}, function() {
console.log("finished");
is.end();
})

这使用 vows-is .

关于testing - Node.js 测试 RESTful API(vows.js?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7127226/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com