18 lines
397 B
PHP
18 lines
397 B
PHP
<?php
|
|
|
|
test('get data from musicbrainz', function () {
|
|
$response = $this->post('/musicbrainz/get_track_metadata', [
|
|
'title' => 'Summertime',
|
|
'artist' => 'Ella Fitzgerald'
|
|
]);
|
|
|
|
$response->assertStatus(200);
|
|
$response->assertJsonStructure([
|
|
'*' => [
|
|
'title',
|
|
'artist',
|
|
'release',
|
|
'length'
|
|
]
|
|
]);
|
|
});
|