mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			67 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import articlesAPI from '../helpCenter/articles';
 | 
						|
import ApiClient from 'dashboard/api/helpCenter/portals';
 | 
						|
import describeWithAPIMock from './apiSpecHelper';
 | 
						|
 | 
						|
describe('#PortalAPI', () => {
 | 
						|
  it('creates correct instance', () => {
 | 
						|
    expect(articlesAPI).toBeInstanceOf(ApiClient);
 | 
						|
    expect(articlesAPI).toHaveProperty('get');
 | 
						|
    expect(articlesAPI).toHaveProperty('show');
 | 
						|
    expect(articlesAPI).toHaveProperty('create');
 | 
						|
    expect(articlesAPI).toHaveProperty('update');
 | 
						|
    expect(articlesAPI).toHaveProperty('delete');
 | 
						|
    expect(articlesAPI).toHaveProperty('getArticles');
 | 
						|
  });
 | 
						|
  describeWithAPIMock('API calls', context => {
 | 
						|
    it('#getArticles', () => {
 | 
						|
      articlesAPI.getArticles({
 | 
						|
        pageNumber: 1,
 | 
						|
        portalSlug: 'room-rental',
 | 
						|
        locale: 'en-US',
 | 
						|
        status: 'published',
 | 
						|
        author_id: '1',
 | 
						|
      });
 | 
						|
      expect(context.axiosMock.get).toHaveBeenCalledWith(
 | 
						|
        '/api/v1/portals/room-rental/articles?page=1&locale=en-US&status=published&author_id=1'
 | 
						|
      );
 | 
						|
    });
 | 
						|
  });
 | 
						|
  describeWithAPIMock('API calls', context => {
 | 
						|
    it('#getArticle', () => {
 | 
						|
      articlesAPI.getArticle({
 | 
						|
        id: 1,
 | 
						|
        portalSlug: 'room-rental',
 | 
						|
      });
 | 
						|
      expect(context.axiosMock.get).toHaveBeenCalledWith(
 | 
						|
        '/api/v1/portals/room-rental/articles/1'
 | 
						|
      );
 | 
						|
    });
 | 
						|
  });
 | 
						|
  describeWithAPIMock('API calls', context => {
 | 
						|
    it('#updateArticle', () => {
 | 
						|
      articlesAPI.updateArticle({
 | 
						|
        articleId: 1,
 | 
						|
        portalSlug: 'room-rental',
 | 
						|
        articleObj: { title: 'Update shipping address' },
 | 
						|
      });
 | 
						|
      expect(context.axiosMock.patch).toHaveBeenCalledWith(
 | 
						|
        '/api/v1/portals/room-rental/articles/1',
 | 
						|
        {
 | 
						|
          title: 'Update shipping address',
 | 
						|
        }
 | 
						|
      );
 | 
						|
    });
 | 
						|
  });
 | 
						|
  describeWithAPIMock('API calls', context => {
 | 
						|
    it('#deleteArticle', () => {
 | 
						|
      articlesAPI.deleteArticle({
 | 
						|
        articleId: 1,
 | 
						|
        portalSlug: 'room-rental',
 | 
						|
      });
 | 
						|
      expect(context.axiosMock.delete).toHaveBeenCalledWith(
 | 
						|
        '/api/v1/portals/room-rental/articles/1'
 | 
						|
      );
 | 
						|
    });
 | 
						|
  });
 | 
						|
});
 |