123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- //package com.simuwang;
- //import cn.hutool.core.collection.ListUtil;
- //import cn.hutool.core.date.DateUtil;
- //import com.simuwang.base.common.conts.DateConst;
- //import com.simuwang.base.pojo.dto.MailboxInfoDTO;
- //import com.simuwang.daq.service.EmailParseApiService;
- //import com.simuwang.daq.service.EmailParseService;
- //import org.jasypt.util.text.BasicTextEncryptor;
- //import org.junit.jupiter.api.Test;
- //import org.springframework.beans.factory.annotation.Autowired;
- //import org.springframework.boot.test.context.SpringBootTest;
- //import java.io.File;
- //import java.util.*;
- //import java.util.List;
- //import java.util.regex.Matcher;
- //import java.util.regex.Pattern;
- //
- //
- //@SpringBootTest(classes = Application.class)
- //public class ApplicationTest {
- //
- // @Autowired
- // private EmailParseService emailParseService;
- //
- // @Autowired
- // private EmailParseApiService emailParseApiService;
- //
- // @Test
- // public void test() {
- // MailboxInfoDTO emailInfoDTO = this.buildMailbox("", "");
- ////
- //// emailInfoDTO.setAccount("jjpj_test");
- //// emailInfoDTO.setPassword("shzq#919");
- //// emailInfoDTO.setHost("mail.shzq.com");
- //// emailInfoDTO.setPort("993");
- //// emailInfoDTO.setProtocol("imap");
- //
- // Date startDate = DateUtil.parse("2024-10-10 15:00:00", DateConst.YYYY_MM_DD_HH_MM_SS);
- // Date endDate = DateUtil.parse("2024-10-10 16:40:00", DateConst.YYYY_MM_DD_HH_MM_SS);
- // try {
- // emailParseService.parseEmail(emailInfoDTO, startDate, endDate);
- // } catch (Exception e) {
- // throw new RuntimeException(e);
- // }
- // }
- //
- // @Test
- // public void reportTest() {
- // MailboxInfoDTO emailInfoDTO = this.buildMailbox("x", "x");
- // Date startDate = DateUtil.parse("2024-10-15 15:10:30", DateConst.YYYY_MM_DD_HH_MM_SS);
- // Date endDate = DateUtil.parse("2024-10-15 17:50:30", DateConst.YYYY_MM_DD_HH_MM_SS);
- // try {
- // emailParseService.parseEmail(emailInfoDTO, startDate, endDate);
- // } catch (Exception e) {
- // throw new RuntimeException(e);
- // }
- // }
- //
- // @Test
- // public void testReparseEmail() {
- // String regexp = ".*_(.*?基金).*";
- // String fileName = "排排网净值及季报补充20230425_分红公告_半年添利多策略1号_璞远半年添利多策略1号私募证券投资基金_20210913_分红公告.pdf";
- // Pattern pattern = Pattern.compile(regexp);
- // Matcher matcher = pattern.matcher(fileName);
- // if(matcher.find()){
- // System.out.println(matcher.group(1));
- // }
- // }
- //
- // @Test
- // public void testReparseFile() {
- // emailParseApiService.reparseFile(ListUtil.toList(40, 43));
- // }
- //
- // @Test
- // public void testDateFormat() {
- // String input = "Smppw@2024";
- // BasicTextEncryptor textEncryptor = new BasicTextEncryptor();
- // textEncryptor.setPassword("qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm12"); // 用您自己的密钥替换"yourSecretKey"
- // String encryptedString = textEncryptor.encrypt(input);
- // String decrypt = textEncryptor.decrypt(encryptedString);
- // System.out.println("加密后的字符串为: " + encryptedString);
- // System.out.println("解密后的字符串为: " + decrypt);
- // }
- //
- // private MailboxInfoDTO buildMailbox(String account, String pwd) {
- // MailboxInfoDTO emailInfoDTO = new MailboxInfoDTO();
- // emailInfoDTO.setUserId(1);
- // emailInfoDTO.setAccount(account);
- // emailInfoDTO.setPassword(pwd);
- // emailInfoDTO.setHost("imap.exmail.qq.com");
- // emailInfoDTO.setPort("993");
- // emailInfoDTO.setProtocol("imap");
- // return emailInfoDTO;
- // }
- //
- //
- // /**
- // * 得到文件名称
- // *
- // * @param path 路径
- // * @return {@link List}<{@link String}>
- // */
- // private static List<String> getFileNames(String path) {
- // File file = new File(path);
- // if (!file.exists()) {
- // return null;
- // }
- // List<String> fileNames = new ArrayList<>();
- // return getFileNames(file, fileNames);
- // }
- //
- // /**
- // * 得到文件名称
- // *
- // * @param file 文件
- // * @param fileNames 文件名
- // * @return {@link List}<{@link String}>
- // */
- // private static List<String> getFileNames(File file, List<String> fileNames) {
- // File[] files = file.listFiles();
- // for (File f : files) {
- // if (f.isDirectory()) {
- // getFileNames(f, fileNames);
- // } else {
- // fileNames.add(f.getName());
- // }
- // }
- // return fileNames;
- // }
- //
- // public static int getPercent2(float h, float w) {
- // int p = 0;
- // float p2 = 0.0f;
- // p2 = 450 / w * 100;
- // p = Math.round(p2);
- // return p;
- // }
- //}
|