This repository has been archived by the owner on Nov 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathfunction.rs
135 lines (116 loc) · 2.72 KB
/
function.rs
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
128
129
130
131
132
133
134
135
use cargo_breaking::ApiCompatibilityDiagnostics;
use syn::parse_quote;
#[test]
fn private_is_not_reported() {
let diff: ApiCompatibilityDiagnostics = parse_quote! {
{},
{
fn fact(n: u32) -> u32 {}
},
};
assert!(diff.is_empty());
}
#[test]
fn addition() {
let diff: ApiCompatibilityDiagnostics = parse_quote! {
{},
{
pub fn fact(n: u32) -> u32 {}
},
};
assert_eq!(diff.to_string(), "+ fact\n");
}
#[test]
fn new_arg() {
let diff: ApiCompatibilityDiagnostics = parse_quote! {
{
pub fn fact() {}
},
{
pub fn fact(n: u32) {}
}
};
assert_eq!(diff.to_string(), "≠ fact\n");
}
#[test]
fn generic_order() {
let diff: ApiCompatibilityDiagnostics = parse_quote! {
{
pub fn f<T, E>() {}
},
{
pub fn f<E, T>() {}
},
};
assert_eq!(diff.to_string(), "≠ f\n");
}
#[test]
fn body_change_not_detected() {
let diff: ApiCompatibilityDiagnostics = parse_quote! {
{
pub fn fact() {}
},
{
pub fn fact() { todo!() }
},
};
assert!(diff.is_empty());
}
#[test]
fn fn_arg_comma_is_removed() {
let diff: ApiCompatibilityDiagnostics = parse_quote! {
{
pub fn a(a: t, b: t, c: t,) {}
},
{
pub fn a(a: t, b: t, c: t) {}
},
};
assert!(diff.is_empty());
}
#[test]
fn fn_arg_last_character_not_removed() {
let diff: ApiCompatibilityDiagnostics = parse_quote! {
{
pub fn a(a: t, b: t, c: t) {}
},
{
pub fn a(a: t, b: t, c: u) {}
},
};
assert_eq!(diff.to_string(), "≠ a\n");
}
#[test]
fn empty_struct_kind_change_is_modification() {
let files = ["pub struct A;", "pub struct A();", "pub struct A {}"];
for (id_a, file_a) in files.iter().enumerate() {
for (id_b, file_b) in files.iter().enumerate() {
let comparator = cargo_breaking::compare(file_a, file_b).unwrap();
let diff = comparator.run();
if id_a != id_b {
assert_eq!(diff.to_string(), "≠ A\n");
} else {
assert!(diff.is_empty());
}
}
}
}
#[test]
fn is_reported_lexicographically() {
let diff: ApiCompatibilityDiagnostics = parse_quote! {
{},
{
pub fn a() {}
pub fn z() {}
}
};
assert_eq!(diff.to_string(), "+ a\n+ z\n");
let diff: ApiCompatibilityDiagnostics = parse_quote! {
{},
{
pub fn z() {}
pub fn a() {}
}
};
assert_eq!(diff.to_string(), "+ a\n+ z\n");
}