aboutsummaryrefslogtreecommitdiff
path: root/jimfs/src/test/java/com/google/common/jimfs/UrlTest.java
blob: f724c7faad7a5b0c31ab6ba6485abd59b31060fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*
 * Copyright 2015 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.google.common.jimfs;

import static com.google.common.base.StandardSystemProperty.LINE_SEPARATOR;
import static com.google.common.truth.Truth.assertThat;
import static java.nio.charset.StandardCharsets.UTF_8;

import com.google.common.collect.ImmutableList;
import com.google.common.collect.Range;
import com.google.common.io.Resources;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.nio.file.FileSystem;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.attribute.FileTime;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

/**
 * Tests that {@link URL} instances can be created and used from jimfs URIs.
 *
 * @author Colin Decker
 */
@RunWith(JUnit4.class)
public class UrlTest {

  private final FileSystem fs = Jimfs.newFileSystem(Configuration.unix());
  private Path path = fs.getPath("foo");

  @Test
  public void creatUrl() throws MalformedURLException {
    URL url = path.toUri().toURL();
    assertThat(url).isNotNull();
  }

  @Test
  public void readFromUrl() throws IOException {
    Files.write(path, ImmutableList.of("Hello World"), UTF_8);

    URL url = path.toUri().toURL();
    assertThat(Resources.asCharSource(url, UTF_8).read())
        .isEqualTo("Hello World" + LINE_SEPARATOR.value());
  }

  @Test
  public void readDirectoryContents() throws IOException {
    Files.createDirectory(path);
    Files.createFile(path.resolve("a.txt"));
    Files.createFile(path.resolve("b.txt"));
    Files.createDirectory(path.resolve("c"));

    URL url = path.toUri().toURL();
    assertThat(Resources.asCharSource(url, UTF_8).read()).isEqualTo("a.txt\nb.txt\nc\n");
  }

  @Test
  public void headers() throws IOException {
    byte[] bytes = {1, 2, 3};
    Files.write(path, bytes);
    FileTime lastModified = Files.getLastModifiedTime(path);

    URL url = path.toUri().toURL();
    URLConnection conn = url.openConnection();

    // read header fields directly
    assertThat(conn.getHeaderFields()).containsEntry("content-length", ImmutableList.of("3"));
    assertThat(conn.getHeaderFields())
        .containsEntry("content-type", ImmutableList.of("application/octet-stream"));

    if (lastModified != null) {
      assertThat(conn.getHeaderFields()).containsKey("last-modified");
      assertThat(conn.getHeaderFields()).hasSize(3);
    } else {
      assertThat(conn.getHeaderFields()).hasSize(2);
    }

    // use the specific methods for reading the expected headers
    assertThat(conn.getContentLengthLong()).isEqualTo(Files.size(path));
    assertThat(conn.getContentType()).isEqualTo("application/octet-stream");

    if (lastModified != null) {
      // The HTTP date format does not include milliseconds, which means that the last modified time
      // returned from the connection may not be exactly the same as that of the file system itself.
      // The difference should less than 1000ms though, and should never be greater.
      long difference = lastModified.toMillis() - conn.getLastModified();
      assertThat(difference).isIn(Range.closedOpen(0L, 1000L));
    } else {
      assertThat(conn.getLastModified()).isEqualTo(0L);
    }
  }

  @Test
  public void contentType() throws IOException {
    path = fs.getPath("foo.txt");
    Files.write(path, ImmutableList.of("Hello World"), UTF_8);

    URL url = path.toUri().toURL();
    URLConnection conn = url.openConnection();

    // Should be text/plain, but this is entirely dependent on the installed FileTypeDetectors
    String detectedContentType = Files.probeContentType(path);
    if (detectedContentType == null) {
      assertThat(conn.getContentType()).isEqualTo("application/octet-stream");
    } else {
      assertThat(conn.getContentType()).isEqualTo(detectedContentType);
    }
  }
}