mirror of
				https://github.com/actions/cache.git
				synced 2025-11-04 13:29:10 +08:00 
			
		
		
		
	Format cache size and display on info (#85)
This commit is contained in:
		@@ -319,7 +319,7 @@ test("restore with a pull request event and cache found", async () => {
 | 
			
		||||
    const setCacheStateMock = jest.spyOn(actionUtils, "setCacheState");
 | 
			
		||||
    const downloadCacheMock = jest.spyOn(cacheHttpClient, "downloadCache");
 | 
			
		||||
 | 
			
		||||
    const fileSize = 142;
 | 
			
		||||
    const fileSize = 62915000;
 | 
			
		||||
    const getArchiveFileSizeMock = jest
 | 
			
		||||
        .spyOn(actionUtils, "getArchiveFileSize")
 | 
			
		||||
        .mockReturnValue(fileSize);
 | 
			
		||||
@@ -336,6 +336,7 @@ test("restore with a pull request event and cache found", async () => {
 | 
			
		||||
    expect(createTempDirectoryMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(downloadCacheMock).toHaveBeenCalledWith(cacheEntry, archivePath);
 | 
			
		||||
    expect(getArchiveFileSizeMock).toHaveBeenCalledWith(archivePath);
 | 
			
		||||
    expect(infoMock).toHaveBeenCalledWith(`Cache Size: ~60 MB (62915000 B)`);
 | 
			
		||||
    expect(mkdirMock).toHaveBeenCalledWith(cachePath);
 | 
			
		||||
 | 
			
		||||
    const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
@@ -412,6 +413,7 @@ test("restore with cache found for restore key", async () => {
 | 
			
		||||
    expect(createTempDirectoryMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(downloadCacheMock).toHaveBeenCalledWith(cacheEntry, archivePath);
 | 
			
		||||
    expect(getArchiveFileSizeMock).toHaveBeenCalledWith(archivePath);
 | 
			
		||||
    expect(infoMock).toHaveBeenCalledWith(`Cache Size: ~0 MB (142 B)`);
 | 
			
		||||
    expect(mkdirMock).toHaveBeenCalledWith(cachePath);
 | 
			
		||||
 | 
			
		||||
    const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
 
 | 
			
		||||
@@ -80,7 +80,11 @@ async function run(): Promise<void> {
 | 
			
		||||
            await cacheHttpClient.downloadCache(cacheEntry, archivePath);
 | 
			
		||||
 | 
			
		||||
            const archiveFileSize = utils.getArchiveFileSize(archivePath);
 | 
			
		||||
            core.debug(`File Size: ${archiveFileSize}`);
 | 
			
		||||
            core.info(
 | 
			
		||||
                `Cache Size: ~${Math.round(
 | 
			
		||||
                    archiveFileSize / (1024 * 1024)
 | 
			
		||||
                )} MB (${archiveFileSize} B)`
 | 
			
		||||
            );
 | 
			
		||||
 | 
			
		||||
            io.mkdirP(cachePath);
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -57,7 +57,9 @@ async function run(): Promise<void> {
 | 
			
		||||
        core.debug(`File Size: ${archiveFileSize}`);
 | 
			
		||||
        if (archiveFileSize > fileSizeLimit) {
 | 
			
		||||
            core.warning(
 | 
			
		||||
                `Cache size of ${archiveFileSize} bytes is over the 400MB limit, not saving cache.`
 | 
			
		||||
                `Cache size of ~${Math.round(
 | 
			
		||||
                    archiveFileSize / (1024 * 1024)
 | 
			
		||||
                )} MB (${archiveFileSize} B) is over the 400MB limit, not saving cache.`
 | 
			
		||||
            );
 | 
			
		||||
            return;
 | 
			
		||||
        }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user