|
| 1 | +/* |
| 2 | + * Licensed to the Apache Software Foundation (ASF) under one or more |
| 3 | + * contributor license agreements. See the NOTICE file distributed with |
| 4 | + * this work for additional information regarding copyright ownership. |
| 5 | + * The ASF licenses this file to You under the Apache License, Version 2.0 |
| 6 | + * (the "License"); you may not use this file except in compliance with |
| 7 | + * the License. You may obtain a copy of the License at |
| 8 | + * |
| 9 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | + * |
| 11 | + * Unless required by applicable law or agreed to in writing, software |
| 12 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + * See the License for the specific language governing permissions and |
| 15 | + * limitations under the License. |
| 16 | + */ |
| 17 | + |
| 18 | +package com.nageoffer.ai.ragent.framework.idempotent; |
| 19 | + |
| 20 | +import org.aspectj.lang.ProceedingJoinPoint; |
| 21 | +import org.junit.jupiter.api.Test; |
| 22 | +import org.redisson.api.RedissonClient; |
| 23 | +import org.springframework.mock.web.MockMultipartFile; |
| 24 | + |
| 25 | +import java.lang.reflect.Method; |
| 26 | + |
| 27 | +import static org.junit.jupiter.api.Assertions.assertEquals; |
| 28 | +import static org.junit.jupiter.api.Assertions.assertNotEquals; |
| 29 | +import static org.mockito.Mockito.mock; |
| 30 | +import static org.mockito.Mockito.when; |
| 31 | + |
| 32 | +class IdempotentSubmitAspectTest { |
| 33 | + |
| 34 | + @Test |
| 35 | + void shouldGenerateDigestFromMultipartMetadataWithoutReadingContent() throws Exception { |
| 36 | + byte[] firstContent = new byte[20 * 1024 * 1024]; |
| 37 | + byte[] differentContent = firstContent.clone(); |
| 38 | + differentContent[differentContent.length - 1] = 1; |
| 39 | + MockMultipartFile first = new MockMultipartFile("file", "first.pdf", "application/pdf", firstContent); |
| 40 | + MockMultipartFile sameMetadata = |
| 41 | + new MockMultipartFile("file", "first.pdf", "application/pdf", differentContent); |
| 42 | + MockMultipartFile differentName = |
| 43 | + new MockMultipartFile("file", "second.pdf", "application/pdf", firstContent); |
| 44 | + |
| 45 | + assertEquals(calcArgsMd5(first), calcArgsMd5(sameMetadata)); |
| 46 | + assertNotEquals(calcArgsMd5(first), calcArgsMd5(differentName)); |
| 47 | + } |
| 48 | + |
| 49 | + private String calcArgsMd5(MockMultipartFile file) throws Exception { |
| 50 | + ProceedingJoinPoint joinPoint = mock(ProceedingJoinPoint.class); |
| 51 | + when(joinPoint.getArgs()).thenReturn(new Object[]{file}); |
| 52 | + IdempotentSubmitAspect aspect = new IdempotentSubmitAspect(mock(RedissonClient.class)); |
| 53 | + Method method = IdempotentSubmitAspect.class.getDeclaredMethod("calcArgsMD5", ProceedingJoinPoint.class); |
| 54 | + method.setAccessible(true); |
| 55 | + return (String) method.invoke(aspect, joinPoint); |
| 56 | + } |
| 57 | +} |
0 commit comments