Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: mos api error convertion #13032

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
91 changes: 57 additions & 34 deletions packages/tests/src/commonlib/m365TitleHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,42 +90,65 @@ export class M365TitleHelper {
}

public async acquire(packageFile: string): Promise<[string, string]> {
this.checkZip(packageFile);
const data = (await fs.readFile(packageFile)) as Buffer;
const content = new FormData();
content.append("package", data);
const uploadResponse = await this.axios!.post(
"/dev/v1/users/packages",
content.getBuffer()
);
try {
this.checkZip(packageFile);
const data = (await fs.readFile(packageFile)) as Buffer;
const content = new FormData();
content.append("package", data);
const uploadResponse = await this.axios!.post(
"/dev/v1/users/packages",
content.getBuffer()
);

const operationId = uploadResponse.data.operationId;
console.debug(`Package uploaded. OperationId: ${operationId as string}`);
console.debug("Acquiring package ...");
const acquireResponse = await this.axios!.post(
"/dev/v1/users/packages/acquisitions",
{
operationId: operationId,
}
);
const statusId = acquireResponse.data.statusId;
console.debug(`Acquiring package with statusId: ${statusId as string} ...`);
do {
const statusResponse = await this.axios!.get(
`/dev/v1/users/packages/status/${statusId as string}`
const operationId = uploadResponse.data.operationId;
console.debug(`Package uploaded. OperationId: ${operationId as string}`);
console.debug("Acquiring package ...");
const acquireResponse = await this.axios!.post(
"/dev/v1/users/packages/acquisitions",
{
operationId: operationId,
}
);
const resCode = statusResponse.status;
console.debug(`Package status: ${resCode} ...`);
if (resCode === 200) {
const titleId: string = statusResponse.data.titleId;
const appId: string = statusResponse.data.appId;
console.info(`TitleId: ${titleId}`);
console.info(`AppId: ${appId}`);
console.info("Sideloading done.");
return [titleId, appId];
} else {
await delay(2000);
const statusId = acquireResponse.data.statusId;
console.debug(
`Acquiring package with statusId: ${statusId as string} ...`
);
do {
const statusResponse = await this.axios!.get(
`/dev/v1/users/packages/status/${statusId as string}`
);
const resCode = statusResponse.status;
console.debug(`Package status: ${resCode} ...`);
if (resCode === 200) {
const titleId: string = statusResponse.data.titleId;
const appId: string = statusResponse.data.appId;
console.info(`TitleId: ${titleId}`);
console.info(`AppId: ${appId}`);
console.info("Sideloading done.");
return [titleId, appId];
} else {
await delay(2000);
}
} while (true);
} catch (error) {
if (error.response) {
throw this.convertError(error);
}
} while (true);
throw error;
}
}
private convertError(error: any): any {
// add error details and trace to message
const tracingId = (error.response.headers?.traceresponse ?? "") as string;
const originalMessage = error.message as string;
const innerError = error.response.data?.error || { code: "", message: "" };
const finalMessage = `${originalMessage} (tracingId: ${tracingId}) ${
innerError.code as string
}: ${innerError.message as string} `;
return {
status: error.response?.status,
tracingId,
message: finalMessage,
};
}
}
Loading