You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.8 KiB
50 lines
1.8 KiB
using Shentun.Peis.ChargeRequests;
|
|
using Shentun.Peis.Models;
|
|
using Shentun.Peis.TransToWebPeis;
|
|
using Shentun.Peis.TransToWebPeiss;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.Domain.Repositories;
|
|
using Volo.Abp.Uow;
|
|
using Xunit;
|
|
using Xunit.Abstractions;
|
|
|
|
namespace Shentun.Peis
|
|
{
|
|
public class TransToWebPeisAppServiceTest : PeisApplicationTestBase
|
|
{
|
|
private readonly IRepository<ChargeRequest, Guid> _repository;
|
|
private readonly TransToWebPeisAppService _appService;
|
|
private readonly ITestOutputHelper _output;
|
|
private readonly IUnitOfWorkManager _unitOfWorkManager;
|
|
public TransToWebPeisAppServiceTest(ITestOutputHelper testOutputHelper)
|
|
{
|
|
_output = testOutputHelper;
|
|
_unitOfWorkManager = GetRequiredService<IUnitOfWorkManager>();
|
|
_repository = GetRequiredService<IRepository<ChargeRequest, Guid>>();
|
|
_appService = GetRequiredService<TransToWebPeisAppService > ();
|
|
}
|
|
[Fact]
|
|
public async Task UploadPeisReportAsync()
|
|
{
|
|
using (var unitOfWork = _unitOfWorkManager.Begin(isTransactional: true))
|
|
{
|
|
|
|
var uploadPeisReportIuputDto = new UploadPeisReportIuputDto()
|
|
{
|
|
PatientRegisterId = new Guid("3a128197-3e61-23d3-1115-aed602ab82a8"),
|
|
//ReportBase64 = Shentun.Utilities.FileHelper.ToBase64("E:\\Whitedolphins\\prog20230709\\体检报告.pdf"),
|
|
ReportBase64 = Shentun.Utilities.FileHelper.ToBase64("E:\\Whitedolphins\\upload.pdf"),
|
|
|
|
};
|
|
await _appService.UploadPeisReportAsync(uploadPeisReportIuputDto);
|
|
await unitOfWork.CompleteAsync();
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
}
|