You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
3.1 KiB
117 lines
3.1 KiB
5 years ago
|
/*
|
||
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
||
|
*
|
||
|
* This source code is licensed under the MIT license found in the
|
||
|
* LICENSE file in the root directory of this source tree.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* A test ensuring that we correctly analyze mode promotions possibility. All classes in this file
|
||
|
* should be free of nullability issues (w.r.t to their mode). The goal of the test is to ensure
|
||
|
* that mode to promote to is correct for each class.
|
||
|
*/
|
||
|
package codetoanalyze.java.nullsafe_default;
|
||
|
|
||
|
import com.facebook.infer.annotation.Nullsafe;
|
||
|
|
||
|
// Zero issues and no dependencies - can strictify
|
||
|
class Default_NoDeps_CanBePromotedToStrict {
|
||
|
static String f() {
|
||
|
return "";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Nullsafe(Nullsafe.Mode.LOCAL)
|
||
|
class Local_NoDeps_CanBePromotedToStrict {
|
||
|
static String f() {
|
||
|
return "";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Nothing to promote to
|
||
|
@Nullsafe(Nullsafe.Mode.STRICT)
|
||
|
class Strict_NoDeps_NoPromos {
|
||
|
static String f() {
|
||
|
return "";
|
||
|
}
|
||
|
}
|
||
|
|
||
5 years ago
|
class Default_UsesDefault_CanBePromotedToTrustAll {
|
||
5 years ago
|
static String f() {
|
||
|
// We use unknown default function. Since we don't support trust some in promotions,
|
||
|
// the possible promotion is trust all.
|
||
|
return Default_NoDeps_CanBePromotedToStrict.f();
|
||
|
}
|
||
|
}
|
||
|
|
||
5 years ago
|
class Default_UsesItself_CanBePromotedToStrict {
|
||
|
static String f() {
|
||
|
// We use only the function from its own class. The class can be promoted to strict staight
|
||
|
// ahead.
|
||
|
return g();
|
||
|
}
|
||
|
|
||
|
static String g() {
|
||
|
return "";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class Default_UsesLocal_CanBePromotedToTrustNone {
|
||
5 years ago
|
static String f() {
|
||
|
// We depend only on a nullsafe method.
|
||
|
// Hence the class can be promoted to "trust none" (but not to strict).
|
||
|
return Local_NoDeps_CanBePromotedToStrict.f();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class Default_UsesStrict_CanBePromotedToStrict {
|
||
|
static String f() {
|
||
|
// We depend only on a strict class.
|
||
|
// Hence the class can be promoted to "trust none" (but not to strict).
|
||
|
return Strict_NoDeps_NoPromos.f();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Nullsafe(
|
||
|
value = Nullsafe.Mode.LOCAL,
|
||
|
trustOnly = @Nullsafe.TrustList({Default_NoDeps_CanBePromotedToStrict.class}))
|
||
5 years ago
|
class TrustSome_DoesNotUseTrusted_CanBePromotedToTrustNone {
|
||
5 years ago
|
static String f() {
|
||
|
return Local_NoDeps_CanBePromotedToStrict.f();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Nullsafe(
|
||
|
value = Nullsafe.Mode.LOCAL,
|
||
|
trustOnly = @Nullsafe.TrustList({Default_NoDeps_CanBePromotedToStrict.class}))
|
||
5 years ago
|
class TrustSome_UsesTrusted_NoPromo {
|
||
5 years ago
|
static String f() {
|
||
|
return Default_NoDeps_CanBePromotedToStrict.f();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Nullsafe(
|
||
|
value = Nullsafe.Mode.LOCAL,
|
||
|
trustOnly = @Nullsafe.TrustList({Local_NoDeps_CanBePromotedToStrict.class}))
|
||
5 years ago
|
class TrustSome_TrustToLocalIsNotNeeded_CanBePromotedToTrustNone {
|
||
5 years ago
|
static String f() {
|
||
|
return Local_NoDeps_CanBePromotedToStrict.f();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Nullsafe(
|
||
|
value = Nullsafe.Mode.LOCAL,
|
||
|
trustOnly = @Nullsafe.TrustList({Strict_NoDeps_NoPromos.class}))
|
||
|
class TrustSome_TrustStrictIsNotNeeded_CanBePromotedToStrict {
|
||
|
static String f() {
|
||
|
return Strict_NoDeps_NoPromos.f();
|
||
|
}
|
||
|
}
|
||
5 years ago
|
|
||
|
@Nullsafe(value = Nullsafe.Mode.LOCAL, trustOnly = @Nullsafe.TrustList({}))
|
||
|
class TrustNone_CanBePromotedToStrict {
|
||
|
static String f() {
|
||
|
return Strict_NoDeps_NoPromos.f();
|
||
|
}
|
||
|
}
|