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

Openapi leading slash #196

Merged
merged 5 commits into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions examples/open-api/docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
],
"paths": {
"AccountService/": {
"/AccountService/": {
"description": "Account related operations",
"get": {
"tags": [
Expand Down Expand Up @@ -338,7 +338,7 @@
}
}
},
"Contact/": {
"/Contact/": {
"description": "Contact related operations",
"get": {
"tags": [
Expand All @@ -359,7 +359,7 @@
}
}
},
"Order/": {
"/Order/": {
"description": "Order related operations",
"get": {
"tags": [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @description Contact related operations
*/
@RestResource(urlMapping='/Contact/*')
@RestResource(UrlMapping='/Contact/*')
global with sharing class SampleRestResourceWithInnerClass {
/**
* @description This is a sample HTTP Get method
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @description Order related operations
*/
@RestResource(urlMapping='/Order/*')
@RestResource(UrlMapping='/Order/*')
global with sharing class SampleRestResourceWithoutApexDocs {
@HttpGet
global static String doGet(String param1, Reference1 param2) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cparra/apexdocs",
"version": "3.3.1",
"version": "3.3.2",
"description": "Library with CLI capabilities to generate documentation for Salesforce Apex classes.",
"keywords": [
"apex",
Expand Down
8 changes: 4 additions & 4 deletions src/core/openapi/__tests__/open-api-docs-processor.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ it('should add a path based on the @UrlResource annotation on the class', functi
const processor = new OpenApiDocsProcessor(noLogger);
processor.onProcess(classMirror);

expect(processor.openApiModel.paths).toHaveProperty('Account/');
expect(processor.openApiModel.paths).toHaveProperty('/Account/');
});

it('should respect slashes', function () {
const annotationElementValue = {
key: 'urlMapping',
value: "'v1/Account/*'",
value: "'/v1/Account/*'",
};
const classMirror = new ClassMirrorBuilder()
.addAnnotation(new AnnotationBuilder().addElementValue(annotationElementValue).build())
Expand All @@ -39,7 +39,7 @@ it('should respect slashes', function () {
const processor = new OpenApiDocsProcessor(noLogger);
processor.onProcess(classMirror);

expect(processor.openApiModel.paths).toHaveProperty('v1/Account/');
expect(processor.openApiModel.paths).toHaveProperty('/v1/Account/');
});

it('should contain a path with a description when the class has an ApexDoc comment', function () {
Expand All @@ -55,5 +55,5 @@ it('should contain a path with a description when the class has an ApexDoc comme
const processor = new OpenApiDocsProcessor(noLogger);
processor.onProcess(classMirror);

expect(processor.openApiModel.paths['Account/'].description).toBe('My Description');
expect(processor.openApiModel.paths['/Account/'].description).toBe('My Description');
});
10 changes: 5 additions & 5 deletions src/core/openapi/open-api-docs-processor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ export class OpenApiDocsProcessor {
return null;
}

let endpointPath = urlMapping.value.replaceAll('"', '').replaceAll("'", '').replaceAll('/*', '/');
if (endpointPath.startsWith('/')) {
endpointPath = endpointPath.substring(1);
}
return endpointPath;
// The OpenApi path needs to start with a leading slash, but
// Salesforce @RestResource annotations already require a leading slash,
// so no need to check for it.
// See URL Guidelines: https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_classes_annotation_rest_resource.htm
return urlMapping.value.replaceAll('"', '').replaceAll("'", '').replaceAll('/*', '/');
}
}
Loading