Removing double-encoding of urls (#1254)

* Removing double-encoding of urls, testing baseUrl

* testing file with space

* updating version
This commit is contained in:
Yotam Mann 2024-06-11 16:09:27 -04:00 committed by GitHub
parent 73f158f686
commit de086f54c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 55 additions and 40 deletions

View file

@ -115,6 +115,57 @@ describe("ToneAudioBuffer", () => {
},
});
});
it("can load an audio file with a space in the name", async () => {
const buffer = new ToneAudioBuffer(
"./test/audio/name with space.wav"
);
expect(buffer.loaded).to.be.false;
await ToneAudioBuffer.loaded();
expect(buffer.loaded).to.be.true;
});
it("can load an encoded audio file with a space in the name", async () => {
const buffer = new ToneAudioBuffer(
"./test/audio/" + encodeURIComponent("name with space.wav")
);
expect(buffer.loaded).to.be.false;
await ToneAudioBuffer.loaded();
expect(buffer.loaded).to.be.true;
});
});
context("baseUrl", () => {
afterEach(() => {
// reset baseUrl
ToneAudioBuffer.baseUrl = "";
});
it("can resolve a url without a baseUrl", async () => {
const buffer = new ToneAudioBuffer("./test/audio/sine.wav");
expect(buffer.loaded).to.be.false;
await ToneAudioBuffer.loaded();
expect(buffer.loaded).to.be.true;
expect(buffer.duration).to.be.closeTo(3, 0.01);
});
it("can resolve a url with a baseUrl", async () => {
ToneAudioBuffer.baseUrl = "./test/audio";
const buffer = new ToneAudioBuffer("sine.wav");
expect(buffer.loaded).to.be.false;
await ToneAudioBuffer.loaded();
expect(buffer.loaded).to.be.true;
expect(buffer.duration).to.be.closeTo(3, 0.01);
});
it("can resolve a url with a baseUrl that has a trailing slash", async () => {
ToneAudioBuffer.baseUrl = "./test/audio/";
const buffer = new ToneAudioBuffer("sine.wav");
expect(buffer.loaded).to.be.false;
await ToneAudioBuffer.loaded();
expect(buffer.loaded).to.be.true;
expect(buffer.duration).to.be.closeTo(3, 0.01);
});
});
context("loading", () => {
@ -141,20 +192,6 @@ describe("ToneAudioBuffer", () => {
expect(hadError).to.equal(true);
});
it("can load a file with fallback extensions", async () => {
const buffer = await ToneAudioBuffer.load(
"./test/audio/sine.[nope|nada|wav]"
);
expect(buffer).to.exist;
});
it("takes the first supported format when multiple extensions are provided", async () => {
const buffer = await ToneAudioBuffer.load(
"./test/audio/sine.[wav|nope]"
);
expect(buffer).to.exist;
});
it("instance .load method returns Promise", (done) => {
const promise = new ToneAudioBuffer().load(testFile);
expect(promise).to.have.property("then");

View file

@ -372,20 +372,6 @@ export class ToneAudioBuffer extends Tone {
* Loads a url using fetch and returns the AudioBuffer.
*/
static async load(url: string): Promise<AudioBuffer> {
// test if the url contains multiple extensions
const matches = url.match(/\[([^\]\[]+\|.+)\]$/);
if (matches) {
const extensions = matches[1].split("|");
let extension = extensions[0];
for (const ext of extensions) {
if (ToneAudioBuffer.supportsType(ext)) {
extension = ext;
break;
}
}
url = url.replace(matches[0], extension);
}
// make sure there is a slash between the baseUrl and the url
const baseUrl =
ToneAudioBuffer.baseUrl === "" ||
@ -393,15 +379,7 @@ export class ToneAudioBuffer extends Tone {
? ToneAudioBuffer.baseUrl
: ToneAudioBuffer.baseUrl + "/";
// encode special characters in file path
const location = document.createElement("a");
location.href = baseUrl + url;
location.pathname = (location.pathname + location.hash)
.split("/")
.map(encodeURIComponent)
.join("/");
const response = await fetch(location.href);
const response = await fetch(baseUrl + url);
if (!response.ok) {
throw new Error(`could not load url: ${url}`);
}

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "tone",
"version": "15.0.0",
"version": "15.1.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "tone",
"version": "15.0.0",
"version": "15.1.0",
"license": "MIT",
"dependencies": {
"standardized-audio-context": "^25.3.70",

View file

@ -1,6 +1,6 @@
{
"name": "tone",
"version": "15.0.0",
"version": "15.1.0",
"description": "A Web Audio framework for making interactive music in the browser.",
"type": "module",
"main": "build/esm/index.js",

Binary file not shown.