Server IP : 104.21.93.192 / Your IP : 216.73.216.73 Web Server : LiteSpeed System : Linux premium900.web-hosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : redwjova ( 1790) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/redwjova/near.llc/wp-content/plugins/extendify/src/Shared/api/__tests__/ |
Upload File : |
import apiFetch from '@wordpress/api-fetch'; import * as wpAPI from '@shared/api/wp'; jest.mock('@wordpress/api-fetch'); describe('WordPress Plugin API helpers', () => { afterEach(() => { jest.clearAllMocks(); }); it('getPlugin calls correct endpoint', async () => { apiFetch.mockResolvedValueOnce([{ name: 'test-plugin' }]); const result = await wpAPI.getPlugin('test-plugin'); expect(apiFetch).toHaveBeenCalledWith({ path: '/wp/v2/plugins?search=test-plugin', }); expect(result).toEqual({ name: 'test-plugin' }); }); it('installPlugin calls correct POST endpoint', async () => { apiFetch.mockResolvedValueOnce({ success: true }); const result = await wpAPI.installPlugin('my-plugin'); expect(apiFetch).toHaveBeenCalledWith({ path: '/wp/v2/plugins', method: 'POST', data: { slug: 'my-plugin' }, }); expect(result).toEqual({ success: true }); }); it('activatePlugin calls correct POST endpoint', async () => { apiFetch.mockResolvedValueOnce([{ name: 'plugin-x' }]); apiFetch.mockResolvedValueOnce({ activated: true }); const result = await wpAPI.activatePlugin('plugin-x'); expect(apiFetch).toHaveBeenCalledTimes(2); expect(result).toEqual({ activated: true }); }); });