117 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
			
		
		
	
	
			117 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
| /*
 | |
|  * Copyright 2025 coze-dev Authors
 | |
|  *
 | |
|  * Licensed under the Apache License, Version 2.0 (the "License");
 | |
|  * you may not use this file except in compliance with the License.
 | |
|  * You may obtain a copy of the License at
 | |
|  *
 | |
|  *     http://www.apache.org/licenses/LICENSE-2.0
 | |
|  *
 | |
|  * Unless required by applicable law or agreed to in writing, software
 | |
|  * distributed under the License is distributed on an "AS IS" BASIS,
 | |
|  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
|  * See the License for the specific language governing permissions and
 | |
|  * limitations under the License.
 | |
|  */
 | |
| 
 | |
| import * as t from '../src/thrift';
 | |
| 
 | |
| describe('ferry-parser', () => {
 | |
|   describe('thrift function', () => {
 | |
|     it('should convert function extensions', () => {
 | |
|       const idl = `
 | |
|       service Foo {
 | |
|         BizResponse Biz1(1: BizRequest req) (api.uri = '/api/biz1')
 | |
|         BizResponse Biz2(1: BizRequest req) (
 | |
|           api.uri = '/api/biz2',
 | |
|           api.serializer = 'json',
 | |
|           api.method = 'POST',
 | |
|           api.group="user"
 | |
|         )
 | |
|         BizResponse Biz3(1: BizRequest req) (api.get = '/api/biz3', api.serializer='form')
 | |
|         BizResponse Biz4(1: BizRequest req) (api.post = '/api/biz4', api.serializer='urlencoded')
 | |
|         BizResponse Biz5(1: BizRequest req) (api.put = '/api/biz5', api.method = 'post')
 | |
|         BizResponse Biz6(1: BizRequest req) (api.delete = '/api/biz6', api.serializer='wow')
 | |
|         BizResponse Biz7(1: BizRequest req)
 | |
|       }
 | |
|       `;
 | |
| 
 | |
|       const expected = [
 | |
|         { uri: '/api/biz1' },
 | |
|         {
 | |
|           uri: '/api/biz2',
 | |
|           serializer: 'json',
 | |
|           method: 'POST',
 | |
|           group: 'user',
 | |
|         },
 | |
|         { method: 'GET', uri: '/api/biz3', serializer: 'form' },
 | |
|         { method: 'POST', uri: '/api/biz4', serializer: 'urlencoded' },
 | |
|         { method: 'PUT', uri: '/api/biz5' },
 | |
|         { method: 'DELETE', uri: '/api/biz6' },
 | |
|         undefined,
 | |
|       ];
 | |
| 
 | |
|       const document = t.parse(idl);
 | |
|       const { functions } = document.body[0] as t.ServiceDefinition;
 | |
|       const extensionConfigs = functions.map(func => func.extensionConfig);
 | |
|       return expect(extensionConfigs).to.eql(expected);
 | |
|     });
 | |
| 
 | |
|     it('should convert function extensions using agw specification', () => {
 | |
|       const idl = `
 | |
|       service Foo {
 | |
|         BizResponse Biz1(1: BizRequest req) (agw.uri = '/api/biz1')
 | |
|         BizResponse Biz2(1: BizRequest req) (
 | |
|           agw.uri = '/api/biz2',
 | |
|           agw.method = 'POST',
 | |
|         )
 | |
|       }
 | |
|       `;
 | |
| 
 | |
|       const expected = [
 | |
|         { uri: '/api/biz1' },
 | |
|         { uri: '/api/biz2', method: 'POST' },
 | |
|       ];
 | |
| 
 | |
|       const document = t.parse(idl, { reviseTailComment: false });
 | |
|       const { functions } = document.body[0] as t.ServiceDefinition;
 | |
|       const extensionConfigs = functions.map(func => func.extensionConfig);
 | |
|       return expect(extensionConfigs).to.eql(expected);
 | |
|     });
 | |
| 
 | |
|     it('should revise function comments', () => {
 | |
|       const idl = `
 | |
|       service Foo {
 | |
|         // c1
 | |
|         BizResponse Biz1(1: BizRequest req) // c2
 | |
|         /* c3 */
 | |
|         BizResponse Biz2(1: BizRequest req) /* c4 */
 | |
|         // c5
 | |
|         /* c6 */
 | |
|         BizResponse Biz3(1: BizRequest req) // c7
 | |
|         /* c8
 | |
|         c9 */
 | |
|         BizResponse Biz4(1: BizRequest req)
 | |
|         // c10
 | |
|         BizResponse Biz5(1: BizRequest req); /* c11 */
 | |
|       }
 | |
|       `;
 | |
| 
 | |
|       const expected = [
 | |
|         ['c1', 'c2'],
 | |
|         [['c3'], ['c4']],
 | |
|         ['c5', ['c6'], 'c7'],
 | |
|         [['c8', ' c9']],
 | |
|         ['c10', ['c11']],
 | |
|       ];
 | |
| 
 | |
|       const document = t.parse(idl);
 | |
|       const { functions } = document.body[0] as t.ServiceDefinition;
 | |
|       const comments = functions.map(func =>
 | |
|         func.comments.map(comment => comment.value),
 | |
|       );
 | |
|       return expect(comments).to.eql(expected);
 | |
|     });
 | |
|   });
 | |
| });
 |