forked from cqfn/jpeek
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[cqfn#522] Tests for CCM calculations (disables, as there are errors …
…in calculation)
- Loading branch information
Showing
5 changed files
with
238 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2017-2024 Yegor Bugayenko | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included | ||
* in all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
*/ | ||
package org.jpeek.metrics; | ||
|
||
import org.junit.jupiter.api.Disabled; | ||
import org.junit.jupiter.api.Test; | ||
|
||
/** | ||
* Tests to check CCM metric in different links between attributes and methods. | ||
* @since 0.29 | ||
*/ | ||
@Disabled | ||
final class CcmTest { | ||
|
||
/** | ||
* Class with one method access one attribute have | ||
* ncc metric = methods count. | ||
* @throws Exception | ||
*/ | ||
@Test | ||
void manyComponentInClassTest() throws Exception { | ||
final MetricBase.Report report = new MetricBase( | ||
"org/jpeek/metrics/CCM.xsl" | ||
).transform( | ||
"CcmManyComp" | ||
); | ||
report.assertVariable("methods", 5); | ||
report.assertVariable("nc", 0); | ||
report.assertVariable("nmp", 10); | ||
report.assertVariable("ncc", 5); | ||
report.assertValue(0.0f, 0.001f); | ||
} | ||
|
||
/** | ||
* Class with one method access one attribute and | ||
* Ctor with all attributes initialization have the same | ||
* metric as without Ctor. | ||
* @throws Exception | ||
*/ | ||
@Test | ||
void manyComponentWithCtorInClassTest() throws Exception { | ||
final MetricBase.Report report = new MetricBase( | ||
"org/jpeek/metrics/CCM.xsl" | ||
).transform( | ||
"CcmManyCompWithCtor" | ||
); | ||
report.assertVariable("methods", 5); | ||
report.assertVariable("nc", 0); | ||
report.assertVariable("nmp", 10); | ||
report.assertVariable("ncc", 5); | ||
report.assertValue(0.0f, 0.001f); | ||
} | ||
|
||
@Test | ||
void oneComponentInClassTest() throws Exception { | ||
final MetricBase.Report report = new MetricBase( | ||
"org/jpeek/metrics/CCM.xsl" | ||
).transform( | ||
"CcmOneComp" | ||
); | ||
report.assertVariable("methods", 5); | ||
report.assertVariable("nc", 10); | ||
report.assertVariable("nmp", 10); | ||
report.assertVariable("ncc", 1); | ||
report.assertValue(1.0f, 0.001f); | ||
} | ||
|
||
/** | ||
* Check ccm metric for mixed usage: attribute usage, methods calls. | ||
* @todo #522:30min there is a 4th step for incorrect calculation: nc | ||
* in case of calling one method from another because of | ||
* `xsl:if test="$method/ops/op/text()[. = $other/ops/op/text()]"` | ||
* method name is not used for creating edge. | ||
* @throws Exception | ||
*/ | ||
@Test | ||
void mixedCallsInClassTest() throws Exception { | ||
final MetricBase.Report report = new MetricBase( | ||
"org/jpeek/metrics/CCM.xsl" | ||
).transform( | ||
"CcmMixCallManyComp" | ||
); | ||
report.assertVariable("methods", 5); | ||
report.assertVariable("nc", 2); | ||
report.assertVariable("nmp", 10); | ||
report.assertVariable("ncc", 3); | ||
report.assertValue(0.0666f, 0.0001f); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
public class CcmManyComp { | ||
|
||
String name1; | ||
|
||
String name2; | ||
|
||
String name3; | ||
|
||
String name4; | ||
|
||
String name5; | ||
|
||
public void one() { | ||
name1 = "1"; | ||
} | ||
|
||
public void two() { | ||
name2 = "2"; | ||
} | ||
|
||
public void three() { | ||
name3 = "3"; | ||
} | ||
|
||
public void four() { | ||
name4 = "4"; | ||
} | ||
|
||
public void five() { | ||
name5 = "5"; | ||
} | ||
|
||
} |
41 changes: 41 additions & 0 deletions
41
src/test/resources/org/jpeek/samples/CcmManyCompWithCtor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
public class CcmManyCompWithCtor { | ||
|
||
String name1; | ||
|
||
String name2; | ||
|
||
String name3; | ||
|
||
String name4; | ||
|
||
String name5; | ||
|
||
public CcmManyComponentWithCtor() { | ||
name1 = "one"; | ||
name2 = "two"; | ||
name3 = "three"; | ||
name4 = "four"; | ||
name5 = "five"; | ||
} | ||
|
||
public void one() { | ||
name1 = "1"; | ||
} | ||
|
||
public void two() { | ||
name2 = "2"; | ||
} | ||
|
||
public void three() { | ||
name3 = "3"; | ||
} | ||
|
||
public void four() { | ||
name4 = "4"; | ||
} | ||
|
||
public void five() { | ||
name5 = "5"; | ||
} | ||
|
||
} |
29 changes: 29 additions & 0 deletions
29
src/test/resources/org/jpeek/samples/CcmMixCallManyComp.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
public class CcmMixCallManyComp { | ||
|
||
String name1; | ||
|
||
String name3; | ||
|
||
String name5; | ||
|
||
public void one() { | ||
name1 = "1"; | ||
} | ||
|
||
public void two() { | ||
name1 = "2"; | ||
} | ||
|
||
public void three() { | ||
name3 = "3"; | ||
} | ||
|
||
public void four() { | ||
this.three(); | ||
} | ||
|
||
public void five() { | ||
name5 = "5"; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
public class CcmOneComponent { | ||
|
||
String name; | ||
|
||
public void one() { | ||
name = "1"; | ||
} | ||
|
||
public void two() { | ||
name = "2"; | ||
} | ||
|
||
public void three() { | ||
name = "3"; | ||
} | ||
|
||
public void four() { | ||
name = "4"; | ||
} | ||
|
||
public void five() { | ||
name = "5"; | ||
} | ||
|
||
} |