Reviewed By: dulmarod Differential Revision: D3184584 fb-gh-sync-id: dbfc99c fbshipit-source-id: dbfc99cmaster
parent
1d909606aa
commit
83c1bbc832
@ -0,0 +1,45 @@
|
||||
/*
|
||||
* Copyright (c) 2016 - present Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
|
||||
#import <Foundation/NSObject.h>
|
||||
|
||||
@interface A : NSObject
|
||||
+ (int)bar;
|
||||
+ (int)scale;
|
||||
@end
|
||||
@implementation A
|
||||
|
||||
+ (int)bar {
|
||||
return 17;
|
||||
}
|
||||
|
||||
+ (int)scale {
|
||||
return 19;
|
||||
}
|
||||
@end
|
||||
|
||||
int foo() { return 23; }
|
||||
|
||||
static const int kInsets = foo(); // Error
|
||||
|
||||
static float kPadding = [A bar] ? 10.0 : 11.0; // Error
|
||||
|
||||
static const float kLineSize = 1 / [A scale]; // Error
|
||||
|
||||
static const float ok = 37;
|
||||
|
||||
void bla() {
|
||||
static const int kInsets = foo(); // Error
|
||||
|
||||
static float kPadding = [A bar] ? 10.0 : 11.0; // Error
|
||||
|
||||
static const float kLineSize = 1 / [A scale]; // Error
|
||||
|
||||
static const float ok = 37;
|
||||
}
|
@ -0,0 +1,58 @@
|
||||
/*
|
||||
* Copyright (c) 2015 - present Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
|
||||
package endtoend.objc;
|
||||
|
||||
import static org.hamcrest.MatcherAssert.assertThat;
|
||||
import static utils.matchers.ResultContainsLineNumbers.containsLines;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.ClassRule;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import utils.DebuggableTemporaryFolder;
|
||||
import utils.InferException;
|
||||
import utils.InferResults;
|
||||
import utils.InferRunner;
|
||||
|
||||
public class GlobalVarTest {
|
||||
|
||||
public static final String FILE =
|
||||
"infer/tests/codetoanalyze/objcpp/frontend/global-var/B.mm";
|
||||
|
||||
private static ImmutableList<String> inferCmdFraction;
|
||||
|
||||
public static final String GLOBAL_VARIABLE_INITIALIZED_WITH_FUNCTION_OR_METHOD_CALL = "GLOBAL_VARIABLE_INITIALIZED_WITH_FUNCTION_OR_METHOD_CALL";
|
||||
|
||||
@ClassRule
|
||||
public static DebuggableTemporaryFolder folder =
|
||||
new DebuggableTemporaryFolder();
|
||||
|
||||
@BeforeClass
|
||||
public static void runInfer() throws InterruptedException, IOException {
|
||||
inferCmdFraction = InferRunner.createObjCPPInferCommand(
|
||||
folder,
|
||||
FILE);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void whenInferRunsGlobalVar()
|
||||
throws InterruptedException, IOException, InferException {
|
||||
InferResults inferResults = InferRunner.runInferObjC(inferCmdFraction);
|
||||
assertThat(
|
||||
"Results should contain " + GLOBAL_VARIABLE_INITIALIZED_WITH_FUNCTION_OR_METHOD_CALL,
|
||||
inferResults,
|
||||
containsLines(new int[]{29, 31, 33}));
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue