File tree 2 files changed +37
-0
lines changed
src/languageservice/services
2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change @@ -328,12 +328,24 @@ export class YAMLSchemaService extends JSONSchemaService {
328
328
let schemaFromModeline = getSchemaFromModeline ( doc ) ;
329
329
if ( schemaFromModeline !== undefined ) {
330
330
if ( ! schemaFromModeline . startsWith ( 'file:' ) && ! schemaFromModeline . startsWith ( 'http' ) ) {
331
+ // If path contains a fragment and it is left intact, "#" will be
332
+ // considered part of the filename and converted to "%23" by
333
+ // path.resolve() -> take it out and add back after path.resolve
334
+ let appendix = '' ;
335
+ if ( schemaFromModeline . indexOf ( '#' ) > 0 ) {
336
+ const segments = schemaFromModeline . split ( '#' , 2 ) ;
337
+ schemaFromModeline = segments [ 0 ] ;
338
+ appendix = segments [ 1 ] ;
339
+ }
331
340
if ( ! path . isAbsolute ( schemaFromModeline ) ) {
332
341
const resUri = URI . parse ( resource ) ;
333
342
schemaFromModeline = URI . file ( path . resolve ( path . parse ( resUri . fsPath ) . dir , schemaFromModeline ) ) . toString ( ) ;
334
343
} else {
335
344
schemaFromModeline = URI . file ( schemaFromModeline ) . toString ( ) ;
336
345
}
346
+ if ( appendix . length > 0 ) {
347
+ schemaFromModeline += '#' + appendix ;
348
+ }
337
349
}
338
350
this . addSchemaPriority ( schemaFromModeline , SchemaPriority . Modeline ) ;
339
351
schemas . push ( schemaFromModeline ) ;
Original file line number Diff line number Diff line change @@ -92,6 +92,31 @@ describe('YAML Schema Service', () => {
92
92
expect ( schema . schema . definitions . bar . type ) . eqls ( 'string' ) ;
93
93
} ) ;
94
94
95
+ it ( 'should handle file path with fragments' , async ( ) => {
96
+ const content = `# yaml-language-server: $schema=schema.json#/definitions/schemaArray\nfoo: bar` ;
97
+ const yamlDock = parse ( content ) ;
98
+
99
+ requestServiceMock = sandbox . fake . resolves ( `{"definitions": {"schemaArray": {
100
+ "type": "array",
101
+ "minItems": 1,
102
+ "items": { "$ref": "#" }
103
+ }}, "properties": {}}` ) ;
104
+
105
+ const service = new SchemaService . YAMLSchemaService ( requestServiceMock ) ;
106
+ const schema = await service . getSchemaForResource ( '' , yamlDock . documents [ 0 ] ) ;
107
+
108
+ expect ( requestServiceMock ) . calledTwice ;
109
+ if ( process . platform === 'win32' ) {
110
+ expect ( requestServiceMock ) . calledWithExactly ( 'file:///d%3A/schema.json' ) ;
111
+ expect ( requestServiceMock ) . calledWithExactly ( 'file:///d%3A/schema.json#/definitions/schemaArray' ) ;
112
+ } else {
113
+ expect ( requestServiceMock ) . calledWithExactly ( 'file:///schema.json' ) ;
114
+ expect ( requestServiceMock ) . calledWithExactly ( 'file:///schema.json#/definitions/schemaArray' ) ;
115
+ }
116
+
117
+ expect ( schema . schema . type ) . eqls ( 'array' ) ;
118
+ } ) ;
119
+
95
120
it ( 'should handle modeline schema comment in the middle of file' , ( ) => {
96
121
const documentContent = `foo:\n bar\n# yaml-language-server: $schema=https://json-schema.org/draft-07/schema#\naa:bbb\n` ;
97
122
const content = `${ documentContent } ` ;
You can’t perform that action at this time.
0 commit comments