blob: b44b9008aabcc81a775c728e7931783199a59e9d (
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
|
package com.jogamp.gluegen.jcpp;
import java.io.File;
import java.io.IOException;
import java.io.Reader;
import org.junit.Test;
import com.jogamp.common.util.IOUtil;
import com.jogamp.gluegen.Logging;
import com.jogamp.gluegen.Logging.LoggerIf;
import com.jogamp.gluegen.test.junit.generation.BuildEnvironment;
import static org.junit.Assert.*;
/**
*
* @author shevek
*/
public class IncludeAbsoluteTest {
private static final LoggerIf LOG = Logging.getLogger(IncludeAbsoluteTest.class);
@Test
public void testAbsoluteInclude() throws Exception {
final String filepath = BuildEnvironment.gluegenRoot + "/jcpp/src/test/resources/absolute.h" ;
LOG.info("filepath: " + filepath);
final File file = new File(filepath);
assertTrue(file.exists());
final String input = "#include <" + file.getAbsolutePath() + ">\n";
LOG.info("Input: " + input);
final Preprocessor pp = new Preprocessor();
pp.addInput(new StringLexerSource(input, true));
final Reader r = new CppReader(pp);
final String output = IOUtil.appendCharStream(new StringBuilder(), r).toString();
r.close();
LOG.info("Output: " + output);
assertTrue(output.contains("absolute-result"));
}
public static void main(final String args[]) throws IOException {
final String tstname = IncludeAbsoluteTest.class.getName();
org.junit.runner.JUnitCore.main(tstname);
}
}
|