10000 Functions Concepts Filesystem (#1574) · RamsesMartinez/java-docs-samples@c9aab34 · GitHub
[go: up one dir, main page]

Skip to content

Commit c9aab34

Browse files
authored
Functions Concepts Filesystem (GoogleCloudPlatform#1574)
* feat: Add functions_concepts_filesystem * feat: Add Functions filesystem snippet * style: Functions Filesystem self review * feat: functions FS.listFiles print stack trace * fix: Simplifies Functions FS list files * fix: Fixes lint issue * fix: Fixes import order issue (again)
1 parent 5e4fbfe commit c9aab34

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/*
2+
* Copyright 2019 Google LLC
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
// [START functions_concepts_filesystem]
18+
import java.io.File;
19+
import java.io.IOException;
20+
import java.io.PrintWriter;
21+
import javax.servlet.http.HttpServletRequest;
22+
import javax.servlet.http.HttpServletResponse;
23+
24+
public class FileSystem {
25+
26+
// Lists the files in the current directory.
27+
public void listFiles(HttpServletRequest request, HttpServletResponse response)
28+
throws IOException {
29+
File curDir = new File(".");
30+
File[] files = curDir.listFiles();
31+
PrintWriter writer = response.getWriter();
32+
writer.write("Files: \n");
33+
for (File f : files) {
34+
writer.write(String.format("\t%s\n", f.getName()));
35+
}
36+
}
37+
}
38+
39+
// [END functions_concepts_filesystem]

functions/snippets/src/test/java/SnippetsTests.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,12 @@ public void helloBackgroundTest() throws IOException {
173173
assertThat(responseOut.toString(), containsString("Hello John!"));
174174
}
175175

176+
@Test
177+
public void filesTest() throws IOException {
178+
new FileSystem().listFiles(request, response);
179+
assertThat(responseOut.toString(), containsString("Files:"));
180+
}
181+
176182
@Test
177183
public void envTest() throws IOException {
178184
environmentVariables.set("FOO", "BAR");

0 commit comments

Comments
 (0)
0