使用 SonarQube 可視化 iOS 代碼質(zhì)量

文檔更新說(shuō)明

  • 2017-09-17 v1.0 初稿
  • 2017-09-28 v1.1 增加單元測(cè)試相關(guān)內(nèi)容
  • 2019-01-02 fix error

項(xiàng)目在研發(fā)過(guò)程中需要時(shí)刻關(guān)注代碼質(zhì)量酿愧,我們通常會(huì)使用 OCLint 工具來(lái)生成靜態(tài)代碼分析報(bào)告昌犹,使用 Slather 生成單元測(cè)試覆蓋率報(bào)告嫡锌,但這些報(bào)告相對(duì)來(lái)說(shuō)都太過(guò)簡(jiǎn)陋,而 Sonar Qube 以一種可視化的方法來(lái)展示代碼中存在的問(wèn)題,本文將介紹如何使用 Sonar Qube 展示 OCLint 掃描后的報(bào)告。

安裝軟件

這里以 Ubuntu 16.04 為例介紹如何安裝 SonarQube,SonarQube 運(yùn)行依賴幾個(gè)東西:JDK 和 MySQL瓶颠,所以在安裝 SonarQube 之前需要先安裝這兩個(gè)東西。

安裝 JDK 和 MySQL

安裝 JDK

  • sudo add-apt-repository ppa:webupd8team/java
  • sudo apt-get update
  • sudo apt-get install oracle-java8-installer

執(zhí)行上述命令后刺桃,在終端里面輸入 java -version粹淋,如能正常顯示 JDK 版本則說(shuō)明安裝成功。

安裝 MySQL

  • sudo apt-get update
  • sudo apt-get install mysql-server
  • sudo mysql_secure_installation

安裝完畢后瑟慈,在終端中輸入 systemctl status mysql.service桃移,如能有如下輸出則說(shuō)明安裝成功:

安裝 SonarQube

解壓安裝包至安裝目錄

安裝包下載地址:https://www.sonarqube.org/downloads/

創(chuàng)建數(shù)據(jù)庫(kù)及相應(yīng)用戶

新建數(shù)據(jù)庫(kù)

  • CREATE DATABASE sonar;

創(chuàng)建用戶并賦予權(quán)限

  • CREATE USER 'sonar' IDENTIFIED BY 'sonar’;
  • GRANT ALL ON sonar.* TO 'sonar'@'%' IDENTIFIED BY 'sonar’;
  • GRANT ALL ON sonar.* TO 'sonar'@'localhost' IDENTIFIED BY 'sonar’;
  • FLUSH PRIVILEGES;

配置數(shù)據(jù)庫(kù)訪問(wèn)參數(shù)

編輯 <install_directory>/conf/sonar.properties,根據(jù)使用的數(shù)據(jù)庫(kù)類型配置相應(yīng)的參數(shù)葛碧,這里選用了 MySQL 數(shù)據(jù)庫(kù)借杰,因而需要配置其用戶名、密碼以及 jdbc url进泼。

image.png

配置 Web Server

同樣編輯 <install_directory>/conf/sonar.properties蔗衡,設(shè)置 Web Server host 主機(jī)的 ip、端口以及訪問(wèn)的上下文乳绕。

sonar.web.host=192.0.0.1
sonar.web.port=80
sonar.web.context=/sonar

上述配置完成后即可啟動(dòng) SonarQube:

  • On Linux/Mac OS: bin/<YOUR OS>/sonar.sh start
  • On Windows: bin/windows-x86-XX/StartSonar.bat

在實(shí)際使用中會(huì)出現(xiàn)MySQL 數(shù)據(jù)庫(kù)無(wú)法訪問(wèn)的情況绞惦,通常有如下幾種問(wèn)題:
1.用戶沒(méi)有權(quán)限,加權(quán)限即可

mysql>GRANT ALL PRIVILEGES ON *.* TO 'sonar'@'%' IDENTIFIED BY 'sonar' WITH GRANT OPTION;

2.默認(rèn)3306端口只允許本地訪問(wèn)刷袍,修改 /etc/mysql/mysql.conf.d/mysqld.cnf
注掉 bind-address = 127.0.0.1

上述軟件安裝完畢后,SonarQube 就搭建完成樊展,在瀏覽器中輸入 http://192.0.0.1/sonar 即可使用SonarQube 來(lái)檢查代碼質(zhì)量呻纹。

SonarQube 默認(rèn)并不支持對(duì) Objective-C 代碼質(zhì)量掃描,官方提供的插件每年需要3000歐专缠,對(duì)于普通開(kāi)發(fā)者來(lái)說(shuō)太貴雷酪,幸好 Github 上有開(kāi)源的插件,下載好源碼后使用 Maven 編譯后將 jar 包放置 <install_directory>/extensions/plugins 目錄中涝婉,重啟 SonarQube后在系統(tǒng)控制面板中如能看到如下內(nèi)容則說(shuō)明安裝成功哥力。

image.png

編寫腳本生成 OCLint 報(bào)告并上傳至 SonarQube

軟件安裝

OCLint 所需軟件請(qǐng)翻閱 OCLint 代碼靜態(tài)分析 ,OCLint 生成的 pmd 文件需要通過(guò) sonar-scanner 上傳至 SonarQube墩弯,下載地址:https://github.com/SonarSource/sonar-scanner-cli/releases

配置

sonar-project.properties

在項(xiàng)目根目錄添加 sonar-project.properties吩跋,配置內(nèi)容如下:

##########################
# Required configuration #
##########################

sonar.projectKey=tztHuaTaiZLMobile
sonar.projectName=tztHuaTaiZLMobile
sonar.projectVersion=4.3.0
sonar.language=objc

# Project description
sonar.projectDescription=tztHuaTaiZLMobile

# Path to source directories 
sonar.sources=tztHuaTaiZLMobile
# Path to test directories (comment if no test)
# sonar.tests=testSrcDir
 
# Destination Simulator to run tests
# As string expected in destination argument of xcodebuild command
# Example = sonar.swift.simulator=platform=iOS Simulator,name=iPhone 6,OS=9.2
sonar.objectivec.simulator=iOS Simulator,name=iPhone 7,OS=10.3.1

# Xcode project configuration (.xcodeproj or .xcworkspace)
# -> If you have a project: configure only sonar.objectivec.project
# -> If you have a workspace: configure sonar.objectivec.workspace and sonar.objectivec.project
# and use the later to specify which project(s) to include in the analysis (comma separated list)
# sonar.objectivec.project=myApplication.xcodeproj 
sonar.objectivec.workspace=tztMobileApp_HTSC.xcworkspace

# Scheme to build your application
sonar.objectivec.appScheme=tztHuaTaiZLMobile
# Scheme to build and run your tests (comment following line of you don't have any tests)
# sonar.objectivec.testScheme=myApplicationTests

##########################
# Optional configuration #
##########################

# Encoding of the source code
sonar.sourceEncoding=UTF-8

# JUnit report generated by run-sonar.sh is stored in sonar-reports/TEST-report.xml
# Change it only if you generate the file on your own
# The XML files have to be prefixed by TEST- otherwise they are not processed 
# sonar.junit.reportsPath=sonar-reports/

# Cobertura report generated by run-sonar.sh is stored in sonar-reports/coverage.xml
# Change it only if you generate the file on your own
# sonar.objectivec.coverage.reportPattern=sonar-reports/coverage*.xml

# OCLint report generated by run-sonar.sh is stored in sonar-reports/oclint.xml
# Change it only if you generate the file on your own
sonar.objectivec.oclint.report=build/sonar-reports/oclint.xml

# FauxPas report generated by run-sonar.sh is stored in sonar-reports/fauxpas.json
# Change it only if you generate the file on your own
# sonar.objectivec.fauxpas.report=sonar-reports/fauxpas.json

# Paths to exclude from coverage report (tests, 3rd party libraries etc.)
# sonar.objectivec.excludedPathsFromCoverage=pattern1,pattern2
sonar.objectivec.excludedPathsFromCoverage=.*Tests.*,.*Specs.*

# Project SCM settings
# sonar.scm.enabled=true
# sonar.scm.url=scm:git:https://...

編寫腳本生成 OCLint 報(bào)告并上傳 SonarQube

在項(xiàng)目根目錄添加 scripts 目錄,并在該目錄下新建shell腳本渔工,腳本內(nèi)容如下:

#!/bin/sh

function testIsInstalled() {

    hash $1 2>/dev/null
    if [ $? -eq 1 ]; then
        echo >&2 "ERROR - $1 is not installed or not in your PATH"; exit 1;
    fi
}

echo "change to parent folder"
cd ..

echo "check xcodebuild, oclint installed is installed"
testIsInstalled xcodebuild
testIsInstalled xcpretty
testIsInstalled oclint

echo "xcodebuild clean"
xcodebuild clean -workspace DemoApp.xcworkspace \
-scheme tztHuaTaiZLMobile

echo "xcodebuild analyze | tee xcodebuild.log | xcpretty --report json-compilation-database"
xcodebuild -workspace DemoApp.xcworkspace \
-configuration Debug \
-scheme DemoApp analyze COMPILER_INDEX_STORE_ENABLE=NO  | tee xcodebuild.log | \
xcpretty -r json-compilation-database

echo "mv compilation_db.json compile_commands.json"
mv ./build/reports/compilation_db.json ./compile_commands.json

echo "check folder existence"
if [ ! -d "build/sonar-reports" ]; then
    mkdir -p build/sonar-reports
fi

echo "oclint-json-compilation-database"
oclint-json-compilation-database \
-v \
-- \
-report-type pmd -o build/sonar-reports/oclint.xml \
-max-priority-1=99999 -max-priority-2=99999 -max-priority-3=99999 \
-rc LONG_METHOD=300 \
-rc LONG_VARIABLE_NAME=50 \
-rc LONG_CLASS=3000 \
-rc NCSS_METHOD=300 \
-rc NESTED_BLOCK_DEPTH=8 \

echo "upload generated oclint report to sonar qube server"
sonar-scanner -X

echo "clean up"
rm -rf .scannerwork
rm -rf xcodebuild.log
rm -rf compile_commands.json
rm -rf build/sonar-reports/oclint.xml

結(jié)果展示

報(bào)告上傳后锌钮,SonarQube 會(huì)根據(jù)報(bào)告內(nèi)容生成可視化的界面,描述每一項(xiàng)存在的問(wèn)題引矩,如可能存在的 Bug梁丘、代碼缺陷侵浸、需要重構(gòu)的代碼塊等等。

本項(xiàng)目分析完畢后效果如下圖所示:

image.png

fix error

1.oclint: error: one compiler command contains multiple jobs:

運(yùn)行環(huán)境:MacOS 10.14.2, XCode Version 9.4, OCLint 0.13.

xcodebuild執(zhí)行命令中添加COMPILER_INDEX_STORE_ENABLE=NO參數(shù)選項(xiàng)氛谜。

1.cd current project folder
2.xcodebuild -target Target -configuration Debug -scheme Scheme -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6' CLANG_ENABLE_MODULE_DEBUGGING=NO CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ENABLE_BITCODE=NO COMPILER_INDEX_STORE_ENABLE=NO | tee xcodebuild.log | xcpretty -r json-compilation-database --output compile_commands.json 
3.oclint-json-compilation-database -- -max-priority-1 '10' -max-priority-2 '2000' -max-priority-3 '5000' -report-type pmd -o pmd.xml

2.pre-commit can not execute fastlane in SourceTree

>>> source ~/.bash_profile
>>> open ~/Applications/SourceTree.app

3.CocoaPods requires your terminal to be using UTF-8 encoding and it aborts to run pod

>>> export LANG=en_US.UTF-8
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末掏觉,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子值漫,更是在濱河造成了極大的恐慌澳腹,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,968評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件惭嚣,死亡現(xiàn)場(chǎng)離奇詭異遵湖,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)晚吞,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門延旧,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人槽地,你說(shuō)我怎么就攤上這事迁沫。” “怎么了捌蚊?”我有些...
    開(kāi)封第一講書(shū)人閱讀 153,220評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵集畅,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我缅糟,道長(zhǎng)挺智,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,416評(píng)論 1 279
  • 正文 為了忘掉前任窗宦,我火速辦了婚禮赦颇,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘赴涵。我一直安慰自己媒怯,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評(píng)論 5 374
  • 文/花漫 我一把揭開(kāi)白布髓窜。 她就那樣靜靜地躺著扇苞,像睡著了一般。 火紅的嫁衣襯著肌膚如雪寄纵。 梳的紋絲不亂的頭發(fā)上鳖敷,一...
    開(kāi)封第一講書(shū)人閱讀 49,144評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音程拭,去河邊找鬼哄陶。 笑死,一個(gè)胖子當(dāng)著我的面吹牛哺壶,可吹牛的內(nèi)容都是我干的屋吨。 我是一名探鬼主播蜒谤,決...
    沈念sama閱讀 38,432評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼至扰!你這毒婦竟也來(lái)了鳍徽?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,088評(píng)論 0 261
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤敢课,失蹤者是張志新(化名)和其女友劉穎阶祭,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體直秆,經(jīng)...
    沈念sama閱讀 43,586評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡濒募,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了圾结。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片瑰剃。...
    茶點(diǎn)故事閱讀 38,137評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖筝野,靈堂內(nèi)的尸體忽然破棺而出晌姚,到底是詐尸還是另有隱情,我是刑警寧澤歇竟,帶...
    沈念sama閱讀 33,783評(píng)論 4 324
  • 正文 年R本政府宣布挥唠,位于F島的核電站,受9級(jí)特大地震影響焕议,放射性物質(zhì)發(fā)生泄漏宝磨。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評(píng)論 3 307
  • 文/蒙蒙 一盅安、第九天 我趴在偏房一處隱蔽的房頂上張望唤锉。 院中可真熱鬧,春花似錦宽堆、人聲如沸腌紧。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,333評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至号胚,卻和暖如春籽慢,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背猫胁。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,559評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工箱亿, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人弃秆。 一個(gè)月前我還...
    沈念sama閱讀 45,595評(píng)論 2 355
  • 正文 我出身青樓届惋,卻偏偏與公主長(zhǎng)得像髓帽,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子脑豹,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容