PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/ngamzghe/public_html/wp-content/plugins/extendify/src/Shared/api/__tests__/
Server: Linux server1.ngambekcore.com 4.18.0-553.51.1.el8_10.x86_64 #1 SMP Wed Apr 30 04:00:07 EDT 2025 x86_64
IP: 159.198.77.92
Choose File :

Url:
Dir : /home/ngamzghe/public_html/wp-content/plugins/extendify/src/Shared/api/__tests__/wp.test.js

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 });
	});
});