Bytes.test.js 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. const { ethers } = require('hardhat');
  2. const { expect } = require('chai');
  3. const { loadFixture } = require('@nomicfoundation/hardhat-network-helpers');
  4. const { MAX_UINT128, MAX_UINT64, MAX_UINT32, MAX_UINT16 } = require('../helpers/constants');
  5. // Helper functions for fixed bytes types
  6. const bytes32 = value => ethers.toBeHex(value, 32);
  7. const bytes16 = value => ethers.toBeHex(value, 16);
  8. const bytes8 = value => ethers.toBeHex(value, 8);
  9. const bytes4 = value => ethers.toBeHex(value, 4);
  10. const bytes2 = value => ethers.toBeHex(value, 2);
  11. async function fixture() {
  12. const mock = await ethers.deployContract('$Bytes');
  13. return { mock };
  14. }
  15. const lorem = ethers.toUtf8Bytes(
  16. 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.',
  17. );
  18. const present = lorem.at(1);
  19. const absent = 255;
  20. describe('Bytes', function () {
  21. before(async function () {
  22. Object.assign(this, await loadFixture(fixture));
  23. });
  24. describe('indexOf', function () {
  25. it('first', async function () {
  26. await expect(this.mock.$indexOf(lorem, ethers.toBeHex(present))).to.eventually.equal(lorem.indexOf(present));
  27. });
  28. it('from index', async function () {
  29. for (const start in Array(lorem.length + 10).fill()) {
  30. const index = lorem.indexOf(present, start);
  31. const result = index === -1 ? ethers.MaxUint256 : index;
  32. await expect(
  33. this.mock.$indexOf(lorem, ethers.toBeHex(present), ethers.Typed.uint256(start)),
  34. ).to.eventually.equal(result);
  35. }
  36. });
  37. it('absent', async function () {
  38. await expect(this.mock.$indexOf(lorem, ethers.toBeHex(absent))).to.eventually.equal(ethers.MaxUint256);
  39. });
  40. it('empty buffer', async function () {
  41. await expect(this.mock.$indexOf('0x', '0x00')).to.eventually.equal(ethers.MaxUint256);
  42. await expect(this.mock.$indexOf('0x', '0x00', ethers.Typed.uint256(17))).to.eventually.equal(ethers.MaxUint256);
  43. });
  44. });
  45. describe('lastIndexOf', function () {
  46. it('first', async function () {
  47. await expect(this.mock.$lastIndexOf(lorem, ethers.toBeHex(present))).to.eventually.equal(
  48. lorem.lastIndexOf(present),
  49. );
  50. });
  51. it('from index', async function () {
  52. for (const start in Array(lorem.length + 10).fill()) {
  53. const index = lorem.lastIndexOf(present, start);
  54. const result = index === -1 ? ethers.MaxUint256 : index;
  55. await expect(
  56. this.mock.$lastIndexOf(lorem, ethers.toBeHex(present), ethers.Typed.uint256(start)),
  57. ).to.eventually.equal(result);
  58. }
  59. });
  60. it('absent', async function () {
  61. await expect(this.mock.$lastIndexOf(lorem, ethers.toBeHex(absent))).to.eventually.equal(ethers.MaxUint256);
  62. });
  63. it('empty buffer', async function () {
  64. await expect(this.mock.$lastIndexOf('0x', '0x00')).to.eventually.equal(ethers.MaxUint256);
  65. await expect(this.mock.$lastIndexOf('0x', '0x00', ethers.Typed.uint256(17))).to.eventually.equal(
  66. ethers.MaxUint256,
  67. );
  68. });
  69. });
  70. describe('slice & splice', function () {
  71. describe('slice(bytes, uint256) & splice(bytes, uint256)', function () {
  72. for (const [descr, start] of Object.entries({
  73. 'start = 0': 0,
  74. 'start within bound': 10,
  75. 'start out of bound': 1000,
  76. })) {
  77. it(descr, async function () {
  78. const result = ethers.hexlify(lorem.slice(start));
  79. await expect(this.mock.$slice(lorem, start)).to.eventually.equal(result);
  80. await expect(this.mock.$splice(lorem, start)).to.eventually.equal(result);
  81. });
  82. }
  83. });
  84. describe('slice(bytes, uint256, uint256) & splice(bytes, uint256, uint256)', function () {
  85. for (const [descr, [start, end]] of Object.entries({
  86. 'start = 0': [0, 42],
  87. 'start and end within bound': [17, 42],
  88. 'end out of bound': [42, 1000],
  89. 'start = end': [17, 17],
  90. 'start > end': [42, 17],
  91. })) {
  92. it(descr, async function () {
  93. const result = ethers.hexlify(lorem.slice(start, end));
  94. await expect(this.mock.$slice(lorem, start, ethers.Typed.uint256(end))).to.eventually.equal(result);
  95. await expect(this.mock.$splice(lorem, start, ethers.Typed.uint256(end))).to.eventually.equal(result);
  96. });
  97. }
  98. });
  99. });
  100. describe('reverseBits', function () {
  101. describe('reverseBytes32', function () {
  102. it('reverses bytes correctly', async function () {
  103. await expect(this.mock.$reverseBytes32(bytes32(0))).to.eventually.equal(bytes32(0));
  104. await expect(this.mock.$reverseBytes32(bytes32(ethers.MaxUint256))).to.eventually.equal(
  105. bytes32(ethers.MaxUint256),
  106. );
  107. // Test complex pattern that clearly shows byte reversal
  108. await expect(
  109. this.mock.$reverseBytes32('0x0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef'),
  110. ).to.eventually.equal('0xefcdab8967452301efcdab8967452301efcdab8967452301efcdab8967452301');
  111. });
  112. it('double reverse returns original', async function () {
  113. const values = [0n, 1n, 0x12345678n, ethers.MaxUint256];
  114. for (const value of values) {
  115. const reversed = await this.mock.$reverseBytes32(bytes32(value));
  116. await expect(this.mock.$reverseBytes32(reversed)).to.eventually.equal(bytes32(value));
  117. }
  118. });
  119. });
  120. describe('reverseBytes16', function () {
  121. it('reverses bytes correctly', async function () {
  122. await expect(this.mock.$reverseBytes16(bytes16(0))).to.eventually.equal(bytes16(0));
  123. await expect(this.mock.$reverseBytes16(bytes16(MAX_UINT128))).to.eventually.equal(bytes16(MAX_UINT128));
  124. // Test complex pattern that clearly shows byte reversal
  125. await expect(this.mock.$reverseBytes16('0x0123456789abcdef0123456789abcdef')).to.eventually.equal(
  126. '0xefcdab8967452301efcdab8967452301',
  127. );
  128. });
  129. it('double reverse returns original', async function () {
  130. const values = [0n, 1n, 0x12345678n, MAX_UINT128];
  131. for (const value of values) {
  132. const reversed = await this.mock.$reverseBytes16(bytes16(value));
  133. // Cast back to uint128 for comparison since function returns uint256
  134. await expect(this.mock.$reverseBytes16(reversed)).to.eventually.equal(bytes16(value & MAX_UINT128));
  135. }
  136. });
  137. });
  138. describe('reverseBytes8', function () {
  139. it('reverses bytes correctly', async function () {
  140. await expect(this.mock.$reverseBytes8(bytes8(0))).to.eventually.equal(bytes8(0));
  141. await expect(this.mock.$reverseBytes8(bytes8(MAX_UINT64))).to.eventually.equal(bytes8(MAX_UINT64));
  142. // Test known pattern: 0x123456789ABCDEF0 -> 0xF0DEBC9A78563412
  143. await expect(this.mock.$reverseBytes8('0x123456789abcdef0')).to.eventually.equal('0xf0debc9a78563412');
  144. });
  145. it('double reverse returns original', async function () {
  146. const values = [0n, 1n, 0x12345678n, MAX_UINT64];
  147. for (const value of values) {
  148. const reversed = await this.mock.$reverseBytes8(bytes8(value));
  149. // Cast back to uint64 for comparison since function returns uint256
  150. await expect(this.mock.$reverseBytes8(reversed)).to.eventually.equal(bytes8(value & MAX_UINT64));
  151. }
  152. });
  153. });
  154. describe('reverseBytes4', function () {
  155. it('reverses bytes correctly', async function () {
  156. await expect(this.mock.$reverseBytes4(bytes4(0))).to.eventually.equal(bytes4(0));
  157. await expect(this.mock.$reverseBytes4(bytes4(MAX_UINT32))).to.eventually.equal(bytes4(MAX_UINT32));
  158. // Test known pattern: 0x12345678 -> 0x78563412
  159. await expect(this.mock.$reverseBytes4(bytes4(0x12345678))).to.eventually.equal(bytes4(0x78563412));
  160. });
  161. it('double reverse returns original', async function () {
  162. const values = [0n, 1n, 0x12345678n, MAX_UINT32];
  163. for (const value of values) {
  164. const reversed = await this.mock.$reverseBytes4(bytes4(value));
  165. // Cast back to uint32 for comparison since function returns uint256
  166. await expect(this.mock.$reverseBytes4(reversed)).to.eventually.equal(bytes4(value & MAX_UINT32));
  167. }
  168. });
  169. });
  170. describe('reverseBytes2', function () {
  171. it('reverses bytes correctly', async function () {
  172. await expect(this.mock.$reverseBytes2(bytes2(0))).to.eventually.equal(bytes2(0));
  173. await expect(this.mock.$reverseBytes2(bytes2(MAX_UINT16))).to.eventually.equal(bytes2(MAX_UINT16));
  174. // Test known pattern: 0x1234 -> 0x3412
  175. await expect(this.mock.$reverseBytes2(bytes2(0x1234))).to.eventually.equal(bytes2(0x3412));
  176. });
  177. it('double reverse returns original', async function () {
  178. const values = [0n, 1n, 0x1234n, MAX_UINT16];
  179. for (const value of values) {
  180. const reversed = await this.mock.$reverseBytes2(bytes2(value));
  181. // Cast back to uint16 for comparison since function returns uint256
  182. await expect(this.mock.$reverseBytes2(reversed)).to.eventually.equal(bytes2(value & MAX_UINT16));
  183. }
  184. });
  185. });
  186. describe('edge cases', function () {
  187. it('handles single byte values', async function () {
  188. await expect(this.mock.$reverseBytes2(bytes2(0x00ff))).to.eventually.equal(bytes2(0xff00));
  189. await expect(this.mock.$reverseBytes4(bytes4(0x000000ff))).to.eventually.equal(bytes4(0xff000000));
  190. });
  191. it('handles alternating patterns', async function () {
  192. await expect(this.mock.$reverseBytes2(bytes2(0xaaaa))).to.eventually.equal(bytes2(0xaaaa));
  193. await expect(this.mock.$reverseBytes2(bytes2(0x5555))).to.eventually.equal(bytes2(0x5555));
  194. await expect(this.mock.$reverseBytes4(bytes4(0xaaaaaaaa))).to.eventually.equal(bytes4(0xaaaaaaaa));
  195. await expect(this.mock.$reverseBytes4(bytes4(0x55555555))).to.eventually.equal(bytes4(0x55555555));
  196. });
  197. });
  198. });
  199. });