Skip to content

Commit b100149

Browse files
committed
Initial skeleton
1 parent 87e9f14 commit b100149

21 files changed

+1517
-0
lines changed

.github/ISSUE_TEMPLATE/bug.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
name: "\U0001F41B Bug Report"
3+
about: Create a report to help us improve
4+
title: "(module name): short issue description"
5+
labels: bug, needs-triage
6+
---
7+
8+
**Describe the bug**
9+
A clear and concise description of what the bug is.
10+
11+
**To Reproduce**
12+
Steps to reproduce the behavior. If possible, provide a minimal amount of code that causes the bug.
13+
14+
**Expected behavior**
15+
A clear and concise description of what you expected to happen.
16+
17+
**Actual behavior**
18+
Tell us what actually happened.
19+
20+
**Environment**
21+
- OS: [e.g. Ubuntu 20.04]
22+
- JDK version:
23+
- Nucleus version:
24+
- Device Certificate Manager version:
25+
26+
**Additional context**
27+
Add any other context about the problem here.
28+
29+
E.g. what is the impact of the bug?

.github/ISSUE_TEMPLATE/config.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: General Support - AWS Forums
4+
url: https://forums.aws.amazon.com
5+
about: Please ask and answer questions here.
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: "\U0001F680 Feature Request"
3+
about: Request a new feature
4+
title: "(module name): short issue description"
5+
labels: feature-request, needs-triage
6+
---
7+
8+
**Feature Description**
9+
A short description of the feature you are proposing.
10+
11+
**Use Case**
12+
Why do you need this feature?
13+
14+
**Proposed Solution**
15+
Please include prototype/workaround/sketch/reference implementation
16+
17+
**Other**
18+
Add detailed explanation, stacktraces, related issues, links for us to have context, etc
19+
20+
21+
* [ ] :wave: I may be able to implement this feature request
22+
* [ ] :warning: This feature might incur a breaking change

.github/PULL_REQUEST_TEMPLATE.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
**Issue #, if available:**
2+
3+
**Description of changes:**
4+
5+
**Why is this change necessary:**
6+
7+
**How was this change tested:**
8+
9+
**Any additional information or context required to review the change:**
10+
11+
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

.github/scripts/cover2cover.py

+162
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,162 @@
1+
#!/usr/bin/env python
2+
3+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
4+
# SPDX-License-Identifier: Apache-2.0
5+
6+
import sys
7+
import xml.etree.ElementTree as ET
8+
import re
9+
import os.path
10+
11+
# branch-rate="0.0" complexity="0.0" line-rate="1.0"
12+
# branch="true" hits="1" number="86"
13+
14+
def find_lines(j_package, filename):
15+
"""Return all <line> elements for a given source file in a package."""
16+
lines = list()
17+
sourcefiles = j_package.findall("sourcefile")
18+
for sourcefile in sourcefiles:
19+
if sourcefile.attrib.get("name") == os.path.basename(filename):
20+
lines = lines + sourcefile.findall("line")
21+
return lines
22+
23+
def line_is_after(jm, start_line):
24+
return int(jm.attrib.get('line', 0)) > start_line
25+
26+
def method_lines(jmethod, jmethods, jlines):
27+
"""Filter the lines from the given set of jlines that apply to the given jmethod."""
28+
start_line = int(jmethod.attrib.get('line', 0))
29+
larger = list(int(jm.attrib.get('line', 0)) for jm in jmethods if line_is_after(jm, start_line))
30+
end_line = min(larger) if len(larger) else 99999999
31+
32+
for jline in jlines:
33+
if start_line <= int(jline.attrib['nr']) < end_line:
34+
yield jline
35+
36+
def convert_lines(j_lines, into):
37+
"""Convert the JaCoCo <line> elements into Cobertura <line> elements, add them under the given element."""
38+
c_lines = ET.SubElement(into, 'lines')
39+
for jline in j_lines:
40+
mb = int(jline.attrib['mb'])
41+
cb = int(jline.attrib['cb'])
42+
ci = int(jline.attrib['ci'])
43+
44+
cline = ET.SubElement(c_lines, 'line')
45+
cline.set('number', jline.attrib['nr'])
46+
cline.set('hits', '1' if ci > 0 else '0') # Probably not true but no way to know from JaCoCo XML file
47+
48+
if mb + cb > 0:
49+
percentage = str(int(100 * (float(cb) / (float(cb) + float(mb))))) + '%'
50+
cline.set('branch', 'true')
51+
cline.set('condition-coverage', percentage + ' (' + str(cb) + '/' + str(cb + mb) + ')')
52+
53+
cond = ET.SubElement(ET.SubElement(cline, 'conditions'), 'condition')
54+
cond.set('number', '0')
55+
cond.set('type', 'jump')
56+
cond.set('coverage', percentage)
57+
else:
58+
cline.set('branch', 'false')
59+
60+
def guess_filename(path_to_class):
61+
m = re.match('([^$]*)', path_to_class)
62+
return (m.group(1) if m else path_to_class) + '.java'
63+
64+
def add_counters(source, target):
65+
target.set('line-rate', counter(source, 'LINE'))
66+
target.set('branch-rate', counter(source, 'BRANCH'))
67+
target.set('complexity', counter(source, 'COMPLEXITY', sum))
68+
69+
def fraction(covered, missed):
70+
return covered / (covered + missed)
71+
72+
def sum(covered, missed):
73+
return covered + missed
74+
75+
def counter(source, type, operation=fraction):
76+
cs = source.findall('counter')
77+
c = next((ct for ct in cs if ct.attrib.get('type') == type), None)
78+
79+
if c is not None:
80+
covered = float(c.attrib['covered'])
81+
missed = float(c.attrib['missed'])
82+
83+
return str(operation(covered, missed))
84+
else:
85+
return '0.0'
86+
87+
def convert_method(j_method, j_lines):
88+
c_method = ET.Element('method')
89+
c_method.set('name', j_method.attrib['name'])
90+
c_method.set('signature', j_method.attrib['desc'])
91+
92+
add_counters(j_method, c_method)
93+
convert_lines(j_lines, c_method)
94+
95+
return c_method
96+
97+
def convert_class(j_class, j_package):
98+
c_class = ET.Element('class')
99+
c_class.set('name', j_class.attrib['name'].replace('/', '.'))
100+
c_class.set('filename', guess_filename(j_class.attrib['name']))
101+
102+
all_j_lines = list(find_lines(j_package, c_class.attrib['filename']))
103+
104+
c_methods = ET.SubElement(c_class, 'methods')
105+
all_j_methods = list(j_class.findall('method'))
106+
for j_method in all_j_methods:
107+
j_method_lines = method_lines(j_method, all_j_methods, all_j_lines)
108+
c_methods.append(convert_method(j_method, j_method_lines))
109+
110+
add_counters(j_class, c_class)
111+
convert_lines(all_j_lines, c_class)
112+
113+
return c_class
114+
115+
def convert_package(j_package):
116+
c_package = ET.Element('package')
117+
c_package.attrib['name'] = j_package.attrib['name'].replace('/', '.')
118+
119+
c_classes = ET.SubElement(c_package, 'classes')
120+
for j_class in j_package.findall('class'):
121+
# Only output the class if it has methods to be covered
122+
if j_class.findall('method'):
123+
c_classes.append(convert_class(j_class, j_package))
124+
125+
add_counters(j_package, c_package)
126+
127+
return c_package
128+
129+
def convert_root(source, target, source_roots):
130+
target.set('timestamp', str(int(source.find('sessioninfo').attrib['start']) / 1000))
131+
132+
sources = ET.SubElement(target, 'sources')
133+
for s in source_roots:
134+
ET.SubElement(sources, 'source').text = s
135+
136+
packages = ET.SubElement(target, 'packages')
137+
for package in source.findall('package'):
138+
packages.append(convert_package(package))
139+
140+
add_counters(source, target)
141+
142+
def jacoco2cobertura(filename, source_roots):
143+
if filename == '-':
144+
root = ET.fromstring(sys.stdin.read())
145+
else:
146+
tree = ET.parse(filename)
147+
root = tree.getroot()
148+
149+
into = ET.Element('coverage')
150+
convert_root(root, into, source_roots)
151+
print('<?xml version="1.0" ?>')
152+
print(ET.tostring(into, encoding='unicode'))
153+
154+
if __name__ == '__main__':
155+
if len(sys.argv) < 2:
156+
print("Usage: cover2cover.py FILENAME [SOURCE_ROOTS]")
157+
sys.exit(1)
158+
159+
filename = sys.argv[1]
160+
source_roots = sys.argv[2:] if 2 < len(sys.argv) else '.'
161+
162+
jacoco2cobertura(filename, source_roots)

.github/workflows/maven.yml

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
name: Java CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches: '*'
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Set up JDK 1.8
16+
uses: actions/setup-java@v1
17+
with:
18+
java-version: 1.8
19+
- uses: actions/cache@v1
20+
with:
21+
path: ~/.m2/repository
22+
# Only restore maven cache for this exact commit. If we start incrementing the version
23+
# of our Java SDK, then we can relax this to just the "hashFiles" and exclude "sha"
24+
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-${{ github.sha }}
25+
- run: rm -rf /tmp/*
26+
continue-on-error: true
27+
- name: Build with Maven
28+
env:
29+
AWS_REGION: us-west-2
30+
run: mvn -ntp -U clean verify
31+
- name: Upload Failed Test Report
32+
uses: actions/[email protected]
33+
if: failure()
34+
with:
35+
name: Failed Test Report
36+
path: target/surefire-reports
37+
- name: Upload Coverage
38+
uses: actions/[email protected]
39+
if: always()
40+
with:
41+
name: Coverage Report
42+
path: target/jacoco-report
43+
- name: Convert Jacoco unit test report to Cobertura
44+
run: python3 .github/scripts/cover2cover.py target/jacoco-report/jacoco.xml src/main/java > target/jacoco-report/cobertura.xml
45+
- name: cobertura-report-unit-test
46+
uses: shaguptashaikh/cobertura-action@master
47+
continue-on-error: true
48+
with:
49+
# The GITHUB_TOKEN for this repo
50+
repo_token: ${{ github.token }}
51+
# Path to the cobertura file.
52+
path: target/jacoco-report/cobertura.xml
53+
# If files with 100% should be skipped from report.
54+
skip_covered: false
55+
# Minimum allowed coverage percentage as an integer.
56+
minimum_coverage: 50 #TODO: Increase the coverage. Currently some of the service code is not testable
57+
# Show line rate as specific column.
58+
show_line: true
59+
# Show branch rate as specific column.
60+
show_branch: true
61+
# Use class names instead of the filename
62+
show_class_names: true
63+
# Use a unique name for the report and comment
64+
report_name: Unit Tests Coverage Report

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
**/target/
2+
*~

codestyle/IntelliJ.xml

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
<!--
2+
~ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
~ SPDX-License-Identifier: Apache-2.0
4+
-->
5+
6+
<code_scheme name="Greengrass" version="173">
7+
<option name="WRAP_WHEN_TYPING_REACHES_RIGHT_MARGIN" value="true" />
8+
<JavaCodeStyleSettings>
9+
<option name="ANNOTATION_PARAMETER_WRAP" value="1" />
10+
<option name="CLASS_COUNT_TO_USE_IMPORT_ON_DEMAND" value="100" />
11+
<option name="NAMES_COUNT_TO_USE_IMPORT_ON_DEMAND" value="100" />
12+
<option name="PACKAGES_TO_USE_IMPORT_ON_DEMAND">
13+
<value />
14+
</option>
15+
<option name="IMPORT_LAYOUT_TABLE">
16+
<value>
17+
<package name="" withSubpackages="true" static="false" />
18+
<emptyLine />
19+
<package name="java" withSubpackages="true" static="false" />
20+
<package name="javax" withSubpackages="true" static="false" />
21+
<emptyLine />
22+
<package name="" withSubpackages="true" static="true" />
23+
</value>
24+
</option>
25+
<option name="JD_INDENT_ON_CONTINUATION" value="true" />
26+
</JavaCodeStyleSettings>
27+
<codeStyleSettings language="JAVA">
28+
<option name="RIGHT_MARGIN" value="120" />
29+
<option name="KEEP_LINE_BREAKS" value="false" />
30+
<option name="KEEP_FIRST_COLUMN_COMMENT" value="false" />
31+
<option name="KEEP_CONTROL_STATEMENT_IN_ONE_LINE" value="false" />
32+
<option name="BLANK_LINES_BEFORE_PACKAGE" value="1" />
33+
<option name="CALL_PARAMETERS_WRAP" value="1" />
34+
<option name="METHOD_PARAMETERS_WRAP" value="1" />
35+
<option name="RESOURCE_LIST_WRAP" value="1" />
36+
<option name="EXTENDS_LIST_WRAP" value="1" />
37+
<option name="THROWS_LIST_WRAP" value="1" />
38+
<option name="EXTENDS_KEYWORD_WRAP" value="1" />
39+
<option name="THROWS_KEYWORD_WRAP" value="1" />
40+
<option name="METHOD_CALL_CHAIN_WRAP" value="1" />
41+
<option name="BINARY_OPERATION_WRAP" value="1" />
42+
<option name="BINARY_OPERATION_SIGN_ON_NEXT_LINE" value="true" />
43+
<option name="TERNARY_OPERATION_WRAP" value="1" />
44+
<option name="TERNARY_OPERATION_SIGNS_ON_NEXT_LINE" value="true" />
45+
<option name="FOR_STATEMENT_WRAP" value="1" />
46+
<option name="ARRAY_INITIALIZER_WRAP" value="1" />
47+
<option name="ASSIGNMENT_WRAP" value="1" />
48+
<option name="WRAP_COMMENTS" value="true" />
49+
<option name="ASSERT_STATEMENT_WRAP" value="1" />
50+
<option name="IF_BRACE_FORCE" value="3" />
51+
<option name="DOWHILE_BRACE_FORCE" value="3" />
52+
<option name="WHILE_BRACE_FORCE" value="3" />
53+
<option name="FOR_BRACE_FORCE" value="3" />
54+
<option name="ENUM_CONSTANTS_WRAP" value="1" />
55+
<option name="WRAP_ON_TYPING" value="1" />
56+
<arrangement>
57+
<groups>
58+
<group>
59+
<type>GETTERS_AND_SETTERS</type>
60+
<order>KEEP</order>
61+
</group>
62+
<group>
63+
<type>OVERRIDDEN_METHODS</type>
64+
<order>KEEP</order>
65+
</group>
66+
</groups>
67+
</arrangement>
68+
</codeStyleSettings>
69+
</code_scheme>

0 commit comments

Comments
 (0)