mirror of
				https://github.com/Redocly/redoc.git
				synced 2025-11-01 00:07:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| import {JsonPointer} from '../../lib/utils/JsonPointer';
 | |
| // test extended JsonPointer
 | |
| describe('Utils', () => {
 | |
|   describe('JsonPointer', () => {
 | |
|     it('should return correct base name', ()=> {
 | |
|       JsonPointer.baseName('/level1/level2/name').should.be.equal('name');
 | |
|       JsonPointer.baseName('/level1/level2/name', 2).should.be.equal('level2');
 | |
|       JsonPointer.baseName('/level1/level2/name', 3).should.be.equal('level1');
 | |
|     });
 | |
| 
 | |
|     it('should return correct dir name', ()=> {
 | |
|       JsonPointer.dirName('/level1/level2/name').should.be.equal('/level1/level2');
 | |
|       JsonPointer.dirName('/level1/level2/name', 2).should.be.equal('/level1');
 | |
|       JsonPointer.dirName('/level1/level2/name', 3).should.be.equal('');
 | |
|     });
 | |
| 
 | |
|     it('should handle relative pointers (starting with #) without errors', ()=> {
 | |
|       JsonPointer.parse('#/level1/level2/name').should.be.deepEqual(['level1', 'level2', 'name']);
 | |
|     });
 | |
| 
 | |
|     it('should join correctly', ()=> {
 | |
|       JsonPointer.join('#/level1', ['level2', 'name']).should.be.equal('/level1/level2/name');
 | |
|     });
 | |
|   });
 | |
| });
 |