Add views for entities
Also reverts some work in the scrobbles view
This commit is contained in:
parent
1895080faf
commit
d1d5c08f9a
37 changed files with 514 additions and 6 deletions
104
src/app/views/album.zig
Normal file
104
src/app/views/album.zig
Normal file
|
|
@ -0,0 +1,104 @@
|
||||||
|
const std = @import("std");
|
||||||
|
const jetzig = @import("jetzig");
|
||||||
|
|
||||||
|
pub fn index(request: *jetzig.Request) !jetzig.View {
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn new(request: *jetzig.Request) !jetzig.View {
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn edit(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn post(request: *jetzig.Request) !jetzig.View {
|
||||||
|
return request.render(.created);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn put(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn patch(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn delete(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
test "index" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.GET, "/album", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "get" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.GET, "/album/example-id", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "new" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.GET, "/album/new", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "edit" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.GET, "/album/example-id/edit", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "post" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.POST, "/album", .{});
|
||||||
|
try response.expectStatus(.created);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "put" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.PUT, "/album/example-id", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "patch" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.PATCH, "/album/example-id", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "delete" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.DELETE, "/album/example-id", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
3
src/app/views/album/delete.zmpl
Normal file
3
src/app/views/album/delete.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/album/edit.zmpl
Normal file
3
src/app/views/album/edit.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/album/get.zmpl
Normal file
3
src/app/views/album/get.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/album/index.zmpl
Normal file
3
src/app/views/album/index.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/album/new.zmpl
Normal file
3
src/app/views/album/new.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/album/patch.zmpl
Normal file
3
src/app/views/album/patch.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/album/post.zmpl
Normal file
3
src/app/views/album/post.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/album/put.zmpl
Normal file
3
src/app/views/album/put.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
104
src/app/views/artist.zig
Normal file
104
src/app/views/artist.zig
Normal file
|
|
@ -0,0 +1,104 @@
|
||||||
|
const std = @import("std");
|
||||||
|
const jetzig = @import("jetzig");
|
||||||
|
|
||||||
|
pub fn index(request: *jetzig.Request) !jetzig.View {
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn new(request: *jetzig.Request) !jetzig.View {
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn edit(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn post(request: *jetzig.Request) !jetzig.View {
|
||||||
|
return request.render(.created);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn put(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn patch(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn delete(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
test "index" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.GET, "/artist", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "get" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.GET, "/artist/example-id", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "new" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.GET, "/artist/new", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "edit" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.GET, "/artist/example-id/edit", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "post" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.POST, "/artist", .{});
|
||||||
|
try response.expectStatus(.created);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "put" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.PUT, "/artist/example-id", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "patch" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.PATCH, "/artist/example-id", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "delete" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.DELETE, "/artist/example-id", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
3
src/app/views/artist/delete.zmpl
Normal file
3
src/app/views/artist/delete.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/artist/edit.zmpl
Normal file
3
src/app/views/artist/edit.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/artist/get.zmpl
Normal file
3
src/app/views/artist/get.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/artist/index.zmpl
Normal file
3
src/app/views/artist/index.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/artist/new.zmpl
Normal file
3
src/app/views/artist/new.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/artist/patch.zmpl
Normal file
3
src/app/views/artist/patch.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/artist/post.zmpl
Normal file
3
src/app/views/artist/post.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/artist/put.zmpl
Normal file
3
src/app/views/artist/put.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
|
|
@ -7,12 +7,8 @@ pub fn index(request: *jetzig.Request, data: *jetzig.Data) !jetzig.View {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get(id: []const u8, request: *jetzig.Request, data: *jetzig.Data) !jetzig.View {
|
pub fn get(id: []const u8, request: *jetzig.Request, data: *jetzig.Data) !jetzig.View {
|
||||||
var root = try request.data(.object);
|
_ = id;
|
||||||
const params = try request.params();
|
_ = data;
|
||||||
if (params.get("ar")) |param| {
|
|
||||||
const artists = try jetzig.database.Query(.Artists).select(.{.id, .name});
|
|
||||||
const
|
|
||||||
}
|
|
||||||
return request.render(.ok);
|
return request.render(.ok);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
104
src/app/views/search.zig
Normal file
104
src/app/views/search.zig
Normal file
|
|
@ -0,0 +1,104 @@
|
||||||
|
const std = @import("std");
|
||||||
|
const jetzig = @import("jetzig");
|
||||||
|
|
||||||
|
pub fn index(request: *jetzig.Request) !jetzig.View {
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn new(request: *jetzig.Request) !jetzig.View {
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn edit(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn post(request: *jetzig.Request) !jetzig.View {
|
||||||
|
return request.render(.created);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn put(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn patch(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn delete(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
test "index" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.GET, "/search", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "get" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.GET, "/search/example-id", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "new" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.GET, "/search/new", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "edit" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.GET, "/search/example-id/edit", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "post" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.POST, "/search", .{});
|
||||||
|
try response.expectStatus(.created);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "put" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.PUT, "/search/example-id", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "patch" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.PATCH, "/search/example-id", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "delete" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.DELETE, "/search/example-id", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
3
src/app/views/search/delete.zmpl
Normal file
3
src/app/views/search/delete.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/search/edit.zmpl
Normal file
3
src/app/views/search/edit.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/search/get.zmpl
Normal file
3
src/app/views/search/get.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/search/index.zmpl
Normal file
3
src/app/views/search/index.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/search/new.zmpl
Normal file
3
src/app/views/search/new.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/search/patch.zmpl
Normal file
3
src/app/views/search/patch.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/search/post.zmpl
Normal file
3
src/app/views/search/post.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/search/put.zmpl
Normal file
3
src/app/views/search/put.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
104
src/app/views/song.zig
Normal file
104
src/app/views/song.zig
Normal file
|
|
@ -0,0 +1,104 @@
|
||||||
|
const std = @import("std");
|
||||||
|
const jetzig = @import("jetzig");
|
||||||
|
|
||||||
|
pub fn index(request: *jetzig.Request) !jetzig.View {
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn new(request: *jetzig.Request) !jetzig.View {
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn edit(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn post(request: *jetzig.Request) !jetzig.View {
|
||||||
|
return request.render(.created);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn put(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn patch(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn delete(id: []const u8, request: *jetzig.Request) !jetzig.View {
|
||||||
|
_ = id;
|
||||||
|
return request.render(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
test "index" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.GET, "/song", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "get" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.GET, "/song/example-id", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "new" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.GET, "/song/new", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "edit" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.GET, "/song/example-id/edit", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "post" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.POST, "/song", .{});
|
||||||
|
try response.expectStatus(.created);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "put" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.PUT, "/song/example-id", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "patch" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.PATCH, "/song/example-id", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
test "delete" {
|
||||||
|
var app = try jetzig.testing.app(std.testing.allocator, @import("routes"));
|
||||||
|
defer app.deinit();
|
||||||
|
|
||||||
|
const response = try app.request(.DELETE, "/song/example-id", .{});
|
||||||
|
try response.expectStatus(.ok);
|
||||||
|
}
|
||||||
3
src/app/views/song/delete.zmpl
Normal file
3
src/app/views/song/delete.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/song/edit.zmpl
Normal file
3
src/app/views/song/edit.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/song/get.zmpl
Normal file
3
src/app/views/song/get.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/song/index.zmpl
Normal file
3
src/app/views/song/index.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/song/new.zmpl
Normal file
3
src/app/views/song/new.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/song/patch.zmpl
Normal file
3
src/app/views/song/patch.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/song/post.zmpl
Normal file
3
src/app/views/song/post.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
3
src/app/views/song/put.zmpl
Normal file
3
src/app/views/song/put.zmpl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div>
|
||||||
|
<span>Content goes here</span>
|
||||||
|
</div>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue