forked from openinula/inula
51 lines
2.1 KiB
TypeScript
51 lines
2.1 KiB
TypeScript
/*
|
|
* Copyright (c) 2023 Huawei Technologies Co.,Ltd.
|
|
*
|
|
* openInula is licensed under Mulan PSL v2.
|
|
* You can use this software according to the terms and conditions of the Mulan PSL v2.
|
|
* You may obtain a copy of Mulan PSL v2 at:
|
|
*
|
|
* http://license.coscl.org.cn/MulanPSL2
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
|
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
|
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
|
* See the Mulan PSL v2 for more details.
|
|
*/
|
|
|
|
import deleteHeader from '../../../../src/utils/headerUtils/deleteHeader';
|
|
|
|
describe('deleteHeader function', () => {
|
|
it('should delete existing header property from the object', () => {
|
|
const obj = { 'content-type': 'application/json', authorization: 'Bearer token' };
|
|
const headerToDelete = 'content-type';
|
|
const result = deleteHeader.call(obj, headerToDelete);
|
|
expect(result).toBe(true);
|
|
expect(obj).toEqual({ authorization: 'Bearer token' });
|
|
});
|
|
|
|
it('should return false if header property does not exist', () => {
|
|
const obj = { 'content-type': 'application/json', authorization: 'Bearer token' };
|
|
const headerToDelete = 'x-custom-header';
|
|
const result = deleteHeader.call(obj, headerToDelete);
|
|
expect(result).toBe(false);
|
|
expect(obj).toEqual({ 'content-type': 'application/json', authorization: 'Bearer token' });
|
|
});
|
|
|
|
it('should return false if header parameter is empty', () => {
|
|
const obj = { 'content-type': 'application/json', authorization: 'Bearer token' };
|
|
const headerToDelete = '';
|
|
const result = deleteHeader.call(obj, headerToDelete);
|
|
expect(result).toBe(false);
|
|
expect(obj).toEqual({ 'content-type': 'application/json', authorization: 'Bearer token' });
|
|
});
|
|
|
|
it('should delete header property with different case sensitivity', () => {
|
|
const obj = { 'Content-Type': 'application/json', Authorization: 'Bearer token' };
|
|
const headerToDelete = 'content-type';
|
|
const result = deleteHeader.call(obj, headerToDelete);
|
|
expect(result).toBe(true);
|
|
expect(obj).toEqual({ Authorization: 'Bearer token' });
|
|
});
|
|
});
|