Word on recording id test

This commit is contained in:
mitteneer 2025-03-07 19:44:33 -05:00
parent daff0dc8c9
commit 1bcbad8f80
5 changed files with 77 additions and 30 deletions

View file

@ -2,6 +2,7 @@
//! Fields based on JSON response fields
const Alias = @import("Alias.zig").Alias;
const zeit = @import("zeit");
pub const Artist = struct {
id: []const u8,
@ -17,6 +18,7 @@ pub const ArtistCredit = struct {
name: []const u8,
artist: Artist,
};
pub const Recording = struct {
id: []const u8,
score: u8,
@ -25,7 +27,8 @@ pub const Recording = struct {
video: ?bool,
@"artist-credit": []ArtistCredit,
//artist_credit: []ArtistCredit,
@"first-release-date": ?[]const u8 = null,
//@"first-release-date": ?[]const u8 = null,
@"first-release-date": ?union(enum) { slice: []const u8, dt: zeit.Date } = null,
//first_release_date: []const u8,
releases: []Release,
isrcs: ?[][]const u8 = null,

View file

@ -1,4 +1,5 @@
const std = @import("std");
const zeit = @import("zeit");
const Entities = @import("Entities.zig");
const Artist = Entities.Artist;
@ -6,6 +7,7 @@ const Recording = Entities.Recording;
pub const Result = struct {
created: ?[]const u8 = null,
//created: ?zeit.Instant.Source.iso8601 = null,
count: ?u32 = null,
offset: ?u32 = null,
artists: ?[]Artist = null,
@ -71,4 +73,19 @@ pub const Result = struct {
}
return null;
}
pub fn getSpecifiedRID(self: *const Result, tn: []const u8, rgn: []const u8, an: []const u8) ?[]const u8 {
_ = tn;
_ = rgn;
_ = an;
if (self.count) |count| {
switch (count) {
0 => return null,
1 => return self.recording.?[0].id,
else => {
return null; // Sort by date
},
}
}
}
};

View file

@ -112,7 +112,7 @@ test "rgid_via_recording" {
test "rgid_via_recording_multiple_artists_2" {
const test_alloc = std.testing.allocator;
const track: []const u8 = "Hesitating%20Beauty";
const album: []const u8 = "Mermaid%Avenue";
const album: []const u8 = "Mermaid%20Avenue";
const artist: []const u8 = "Wilco";
const wilco_id: []const u8 = "9e53f84d-ef44-4c16-9677-5fd4d78cbd7d";
@ -130,4 +130,29 @@ test "rgid_via_recording_multiple_artists_2" {
try testing.expect(std.mem.eql(u8, result.getSpecifiedARID("Wilco", "Hesitating Beauty").?, wilco_id));
}
//try testing.expect(false);
}
//test "rid" {
// const test_alloc = std.testing.allocator;
// const track: []const u8 = "Battery";
// const album: []const u8 = "Master%20of%20Puppets";
// const artist: []const u8 = "Metallica";
//
// const battery_id: []const u8 = "3bfda26a-49fa-4bc4-a4d6-8bbfa0767ab7";
//
// var mb_result = std.ArrayList(u8).init(test_alloc);
// defer mb_result.deinit();
//
// const search_result = try mbSearch(test_alloc, &mb_result, track, album, artist);
//
// if (search_result) |sr| {
// const json = try std.json.parseFromSlice(QR.Result, test_alloc, sr, .{ .ignore_unknown_fields = true });
// defer json.deinit();
//
// const result: QR.Result = json.value;
//
// try testing.expect(std.mem.eql(u8, result.getSpecifiedARID("Wilco", "Hesitating Beauty").?, battery_id));
// }
//}