├── .gitignore ├── .travis.yml ├── LICENSE ├── META-INF └── plugin.xml ├── README.md ├── buildfile ├── lib └── mockito-all-1.8.5.jar ├── src ├── cc │ └── takacs │ │ └── php_codeverage_display │ │ ├── ApplicationPlugin.java │ │ ├── ProjectPlugin.java │ │ ├── clover │ │ ├── CloverXmlReader.java │ │ ├── CoverageCollection.java │ │ ├── FileCoverage.java │ │ └── LineCoverage.java │ │ ├── config │ │ ├── ConfigPanel.form │ │ ├── ConfigPanel.java │ │ ├── ConfigValues.java │ │ └── PluginConfiguration.java │ │ ├── display │ │ ├── CoverageDisplay.java │ │ ├── CoverageHighlighter.java │ │ ├── DisplayDrawerThread.java │ │ ├── DisplayHandler.java │ │ ├── ErrorStripeMarkHighlighter.java │ │ ├── Highlighter.java │ │ ├── LineHighlighter.java │ │ └── SideHighlighter.java │ │ ├── displaymap │ │ ├── CanonicalDisplayMapDecorator.java │ │ ├── FilenameDisplayMap.java │ │ ├── SimpleFilenameDisplayMap.java │ │ ├── UnixToWindowsDisplayMapDecorator.java │ │ └── WindowsDisplayMapDecorator.java │ │ ├── listener │ │ ├── EditorManagerListener.java │ │ ├── ExecListener.java │ │ └── FileOperationListener.java │ │ └── toolbar │ │ ├── ToggleEnable.java │ │ └── ToggleIconService.java └── icons │ ├── toolbar-toggle-disabled-icon.png │ └── toolbar-toggle-enabled-icon.png └── test ├── cc └── takacs │ └── php_codecoverage_display │ └── display │ ├── CoverageDisplayHelper.java │ ├── clover │ └── CloverXmlReaderTest.java │ └── displaymap │ ├── CanonicalDisplayMapDecoratorTest.java │ ├── SimpleFilenameDisplayMapTest.java │ ├── UnixToWindowsDisplayMapDecoratorDirectoryMappingTest.java │ ├── UnixToWindowsDisplayMapDecoratorTest.java │ └── WindowsDisplayMapDecoratorTest.java └── resources ├── atoum-clover.xml └── phpunit-clover.xml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .clover 3 | out 4 | coverage.i* 5 | /*.zip 6 | /*.jar 7 | /.idea 8 | lib_phpstorm 9 | reports 10 | target 11 | *.iml 12 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: java 2 | before_script: sudo env JAVA_HOME=$JAVA_HOME gem install buildr 3 | script: buildr test 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /META-INF/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | PHPUnit code coverage 3 | Displays PHPUnit code coverage of file in the editor. 4 | 1.0.0 5 | Zsolt Takacs 6 | 7 | 8 | 9 | 11 |

Changelog:

12 | 13 |

v1.0.0

14 |
    15 |
  • Implemented #18, using color from built-in color scheme (see options for the checkbox)
  • 16 |
17 | 18 |

v0.5.0

19 |
    20 |
  • Atoum support (thanks @jdecool)
  • 21 |
22 | 23 |

v0.4.2

24 |
    25 |
  • Recompile for Java 1.6
  • 26 |
27 | 28 |

v0.4.1

29 |
    30 |
  • Alpha setting of colors works on the left side of the editor.
  • 31 |
32 | 33 |

v0.4.0

34 |
    35 |
  • Now you have 3 options on how to highlight covered/uncovered lines. Added new 'Error' checkbox in plugin settings. 36 |
  • 37 |
  • Fix for #19
  • 38 |
39 | 40 |

v0.3.0

41 |
    42 |
  • Fixed issue #13 and #16. You may now toggle this highlight on and off. The plugin listens to the most recent 43 | coverage report. It is either the one you specified or a report in the PhpStrom coverage suite.
  • 44 |
45 |

v0.2.3

46 |
    47 |
  • #15 fix possible nullpointer in FileOperationListener
  • 48 |
49 | 50 | ]]> 51 |
52 | 53 | com.intellij.modules.platform 54 | 55 | 56 | 57 | cc.takacs.php_codeverage_display.ApplicationPlugin 58 | cc.takacs.php_codeverage_display.ApplicationPlugin 59 | 60 | 61 | 62 | 63 | 64 | cc.takacs.php_codeverage_display.config.ConfigValues 65 | cc.takacs.php_codeverage_display.config.ConfigValues 66 | 67 | 68 | cc.takacs.php_codeverage_display.ProjectPlugin 69 | cc.takacs.php_codeverage_display.ProjectPlugin 70 | 71 | 72 | cc.takacs.php_codeverage_display.config.PluginConfiguration 73 | cc.takacs.php_codeverage_display.config.PluginConfiguration 74 | 76 | 77 | cc.takacs.php_codeverage_display.display.DisplayHandler 78 | cc.takacs.php_codeverage_display.display.DisplayHandler 79 | 80 | 81 | 82 | 83 | 86 | 87 | 88 | 89 | 90 |
91 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PHPUnit code coverage plugin for PhpStorm 2 | 3 | [![Build Status](https://secure.travis-ci.org/oker1/phpunit_codecoverage_display.png?branch=master)](http://travis-ci.org/oker1/phpunit_codecoverage_display) 4 | 5 | Simple plugin to display PHPUnit coverage from clover xml. 6 | License: GPLv3 7 | 8 | ## Changelog: 9 | 10 | ### v0.3.0 11 | * Fixed issue #13 and #16. You may now toggle this highlight on and off. The plugin listens to the most recent 12 | coverage report. It is either the one you specified or a report in the PhpStrom coverage suite. 13 | 14 | ### v0.2.2 15 | * PhpStorm 4 compatibility fix 16 | 17 | ### v0.2.1 18 | * Fix file paths when running on windows without path mapping 19 | 20 | ### v0.2.0 21 | * path mapping to enable shared folder + ssh workflow (#10) 22 | * fix bug with coverage data on first line of php file (#11) 23 | 24 | ### v0.1.2 25 | * fix coverage after moving/renaming files (#9) 26 | 27 | ### v0.1.1 28 | * highlight continous lines as blocks (#8) 29 | * fix for multiple open projects 30 | 31 | ### v0.1.0 32 | * highlighting of lines and left side of editor can be toggled (#5) 33 | * error marks on right side of editor (#2) 34 | * fix for projects opened on symlinked paths (#7) 35 | 36 | ### v0.0.5 37 | * remove highlights on first edit (#6) 38 | * redraw highlights on config changes 39 | 40 | ### v0.0.4 41 | * lower required Idea platform version to 107.120 (#4) 42 | 43 | ### v0.0.3 44 | * file selector nullpointer bugfix (#3) 45 | 46 | ### v0.0.2 47 | * configurable color (#1) 48 | 49 | ### v0.0.1 50 | * initial release -------------------------------------------------------------------------------- /buildfile: -------------------------------------------------------------------------------- 1 | # Generated by Buildr 1.4.7, change to your liking 2 | 3 | # Version number for this release 4 | VERSION_NUMBER = "0.2.2" 5 | # Group identifier for your projects 6 | GROUP = "phpunit_codecoverage_display" 7 | COPYRIGHT = "Zsolt Takacs" 8 | 9 | # Specify Maven 2.0 remote repositories here, like this: 10 | repositories.remote << "http://repo1.maven.org/maven2" 11 | 12 | phpstorm_url = "http://download.jetbrains.com/webide/PhpStorm-EAP-121.12.zip" 13 | phpstorm = artifact("phpstorm:phpstorm:zip:phpstorm:121.12") 14 | download(phpstorm => phpstorm_url).invoke 15 | zip = Unzip.new('lib_phpstorm' => phpstorm).from_path('lib').root.extract 16 | 17 | my_layout = Layout.new 18 | my_layout[:source, :main, :java] = 'src' 19 | my_layout[:source, :test, :java] = 'test' 20 | my_layout[:source, :test, :resources] = 'test/resources'; 21 | 22 | jars = Dir.glob("lib_phpstorm/**/*.jar") 23 | jars << Dir.glob("lib/**/*.jar") 24 | 25 | desc "The Phpunit_codecoverage_display project" 26 | define "phpunit_codecoverage_display", :layout=>my_layout do 27 | project.version = VERSION_NUMBER 28 | project.group = GROUP 29 | manifest["Implementation-Vendor"] = COPYRIGHT 30 | 31 | test.with jars 32 | compile.with jars 33 | end 34 | -------------------------------------------------------------------------------- /lib/mockito-all-1.8.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oker1/phpunit_codecoverage_display/9c287eee492de42374de9f18999a77f45ee9d0bc/lib/mockito-all-1.8.5.jar -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/ApplicationPlugin.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display; 2 | 3 | import cc.takacs.php_codeverage_display.toolbar.ToggleIconService; 4 | import com.intellij.ide.util.PropertiesComponent; 5 | import com.intellij.openapi.actionSystem.ActionManager; 6 | import com.intellij.openapi.actionSystem.AnAction; 7 | import com.intellij.openapi.components.ApplicationComponent; 8 | import org.jetbrains.annotations.NotNull; 9 | 10 | /** 11 | * @author Zsolt Takacs 12 | */ 13 | public class ApplicationPlugin implements ApplicationComponent { 14 | @Override 15 | public void initComponent() { 16 | AnAction toolbarButton = ActionManager.getInstance().getAction("cc.takacs.php_codeverage_display.toolbar.enable"); 17 | final boolean enabled = PropertiesComponent.getInstance().getBoolean("cc.takacs.php_codeverage_display.enabled", true); 18 | new ToggleIconService().toggleIcon(toolbarButton.getTemplatePresentation(), enabled); 19 | } 20 | 21 | @Override 22 | public void disposeComponent() { 23 | } 24 | 25 | @NotNull 26 | @Override 27 | public String getComponentName() { 28 | return "ApplicationPlugin"; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/ProjectPlugin.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display; 2 | 3 | import cc.takacs.php_codeverage_display.config.ConfigValues; 4 | import cc.takacs.php_codeverage_display.config.PluginConfiguration; 5 | import cc.takacs.php_codeverage_display.display.DisplayHandler; 6 | import cc.takacs.php_codeverage_display.listener.EditorManagerListener; 7 | import cc.takacs.php_codeverage_display.listener.ExecListener; 8 | import cc.takacs.php_codeverage_display.listener.FileOperationListener; 9 | import cc.takacs.php_codeverage_display.toolbar.ToggleIconService; 10 | import com.intellij.execution.ExecutionManager; 11 | import com.intellij.openapi.actionSystem.ActionManager; 12 | import com.intellij.openapi.actionSystem.AnAction; 13 | import com.intellij.openapi.project.Project; 14 | import com.intellij.openapi.vfs.VirtualFileManager; 15 | import com.intellij.util.messages.MessageBusConnection; 16 | 17 | /** 18 | * @author Zsolt Takacs 19 | */ 20 | public class ProjectPlugin { 21 | private Project project; 22 | 23 | public DisplayHandler displayHandler; 24 | 25 | public ProjectPlugin(Project project, DisplayHandler displayHandler) { 26 | this.project = project; 27 | this.displayHandler = displayHandler; 28 | 29 | PluginConfiguration pc= project.getComponent(PluginConfiguration.class); 30 | 31 | ConfigValues config = pc.getState(); 32 | 33 | registerListeners(displayHandler); 34 | 35 | //Make sure to update the tool bar icon 36 | } 37 | 38 | private void registerListeners(DisplayHandler displayHandler) { 39 | final MessageBusConnection connect = this.project.getMessageBus().connect(this.project); 40 | 41 | connect.subscribe(ExecutionManager.EXECUTION_TOPIC, new ExecListener(displayHandler)); 42 | connect.subscribe(EditorManagerListener.FILE_EDITOR_MANAGER, new EditorManagerListener(displayHandler)); 43 | VirtualFileManager.getInstance().addVirtualFileListener(new FileOperationListener(displayHandler)); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/clover/CloverXmlReader.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.clover; 2 | 3 | import org.w3c.dom.Document; 4 | import org.w3c.dom.Element; 5 | import org.w3c.dom.NodeList; 6 | 7 | import javax.xml.parsers.DocumentBuilderFactory; 8 | import java.io.File; 9 | import java.io.FileInputStream; 10 | 11 | /** 12 | * @author Zsolt Takacs 13 | */ 14 | public class CloverXmlReader { 15 | String filename; 16 | 17 | public CloverXmlReader(String filename) { 18 | this.filename = filename; 19 | } 20 | 21 | public CoverageCollection parse() { 22 | CoverageCollection coverageCollection = new CoverageCollection(); 23 | 24 | if (filename != null) { 25 | try { 26 | FileInputStream file = new FileInputStream(filename); 27 | Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(file); 28 | 29 | NodeList nodes = doc.getElementsByTagName("file"); 30 | for (int i = 0; i < nodes.getLength(); i++) { 31 | Element element = (Element) nodes.item(i); 32 | 33 | String coveredFilename = element.getAttribute("name"); 34 | if (element.hasAttribute("path")) { 35 | String coveredPath = element.getAttribute("path"); 36 | if (coveredPath.endsWith(coveredFilename)) { 37 | coveredFilename = coveredPath; 38 | } else { 39 | if (!coveredPath.endsWith(File.pathSeparator)) coveredPath += File.pathSeparator; 40 | coveredFilename = coveredPath + coveredFilename; 41 | } 42 | } 43 | 44 | FileCoverage fileCoverage = new FileCoverage(); 45 | 46 | NodeList lines = element.getElementsByTagName("line"); 47 | for (int j = 0; j < lines.getLength(); j++) { 48 | Element line = (Element) lines.item(j); 49 | 50 | if (line.getAttribute("type").equals("stmt")) { 51 | int num = Integer.parseInt(line.getAttribute("num")); 52 | int count = Integer.parseInt(line.getAttribute("count")); 53 | 54 | LineCoverage lineCoverage = new LineCoverage(count); 55 | fileCoverage.addLine(num, lineCoverage); 56 | } 57 | } 58 | 59 | coverageCollection.add(coveredFilename, fileCoverage); 60 | } 61 | } catch (Exception e) { 62 | } 63 | } 64 | 65 | return coverageCollection; 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/clover/CoverageCollection.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.clover; 2 | 3 | import java.util.HashMap; 4 | import java.util.Set; 5 | 6 | /** 7 | * @author Zsolt Takacs 8 | */ 9 | public class CoverageCollection { 10 | private HashMap files; 11 | 12 | public CoverageCollection() { 13 | files = new HashMap(); 14 | } 15 | 16 | public void add(String filename, FileCoverage coverage) { 17 | files.put(filename, coverage); 18 | } 19 | 20 | public FileCoverage get(String filename) { 21 | return files.get(filename); 22 | } 23 | 24 | public Set getKeys() { 25 | return files.keySet(); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/clover/FileCoverage.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.clover; 2 | 3 | import java.util.LinkedHashMap; 4 | import java.util.Set; 5 | 6 | /** 7 | * @author Zsolt Takacs 8 | */ 9 | public class FileCoverage { 10 | private LinkedHashMap lines; 11 | 12 | public FileCoverage() { 13 | lines = new LinkedHashMap(); 14 | } 15 | 16 | public void addLine(int line, LineCoverage coverage) { 17 | lines.put(line, coverage); 18 | } 19 | 20 | public LineCoverage getLine(int line) { 21 | return lines.get(line); 22 | } 23 | 24 | public Set getKeys() { 25 | return lines.keySet(); 26 | } 27 | 28 | public boolean hasLines() { 29 | return lines.size() > 0; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/clover/LineCoverage.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.clover; 2 | 3 | /** 4 | * @author Zsolt Takacs 5 | */ 6 | public class LineCoverage { 7 | private int executed; 8 | 9 | public LineCoverage(int executed) { 10 | this.executed = executed; 11 | } 12 | 13 | public boolean isExecuted() { 14 | return executed > 0; 15 | } 16 | 17 | public int getExecuted() { 18 | return executed; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/config/ConfigPanel.form: -------------------------------------------------------------------------------- 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 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 |
293 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/config/ConfigPanel.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.config; 2 | 3 | import com.intellij.openapi.fileChooser.FileChooser; 4 | import com.intellij.openapi.fileChooser.FileChooserDescriptor; 5 | import com.intellij.openapi.fileChooser.FileChooserDescriptorFactory; 6 | import com.intellij.openapi.vfs.VirtualFile; 7 | 8 | import javax.swing.*; 9 | import javax.swing.event.ChangeEvent; 10 | import javax.swing.event.ChangeListener; 11 | import java.awt.*; 12 | import java.awt.event.*; 13 | 14 | /** 15 | * @author Zsolt Takacs 16 | */ 17 | public class ConfigPanel { 18 | public JPanel panel; 19 | private JButton browseCloverXmlButton; 20 | public JTextField cloverLocation; 21 | public JPanel coveredColor; 22 | public JPanel uncoveredColor; 23 | public JCheckBox lineCheckBox; 24 | public JCheckBox sideCheckBox; 25 | public JTextField remoteDir; 26 | public JTextField localDir; 27 | public JButton browseLocalDir; 28 | public JCheckBox dirTranslation; 29 | public JCheckBox useCoverageSuite; 30 | // checkbox used to enable & disable error highlighting 31 | // which usually looks like errors 32 | public JCheckBox errorCheckBox; 33 | public JCheckBox useColorScheme; 34 | private JLabel coveredColorLabel; 35 | private JLabel uncoveredColorLabel; 36 | private PickerListener coveredColorListener = new PickerListener(panel, coveredColor); 37 | private PickerListener uncoveredColorListener = new PickerListener(panel, uncoveredColor); 38 | 39 | public ConfigPanel() { 40 | browseCloverXmlButton.addActionListener( 41 | new BrowseListener(this.cloverLocation, FileChooserDescriptorFactory.createSingleFileNoJarsDescriptor()) 42 | ); 43 | browseLocalDir.addActionListener( 44 | new BrowseListener(this.localDir, FileChooserDescriptorFactory.createSingleFolderDescriptor()) 45 | ); 46 | 47 | setColorListeners(true); 48 | dirTranslation.addActionListener(new ActionListener() { 49 | public void actionPerformed(ActionEvent actionEvent) { 50 | localDir.setEnabled(dirTranslation.isSelected()); 51 | remoteDir.setEnabled(dirTranslation.isSelected()); 52 | browseLocalDir.setEnabled(dirTranslation.isSelected()); 53 | } 54 | }); 55 | useColorScheme.addItemListener(new ItemListener() { 56 | @Override 57 | public void itemStateChanged(ItemEvent e) { 58 | boolean isNotSelected = e.getStateChange() != ItemEvent.SELECTED; 59 | coveredColorLabel.setEnabled(isNotSelected); 60 | uncoveredColorLabel.setEnabled(isNotSelected); 61 | setColorListeners(isNotSelected); 62 | } 63 | }); 64 | } 65 | 66 | private void setColorListeners(boolean enabled) { 67 | if (enabled) { 68 | coveredColor.addMouseListener(coveredColorListener); 69 | uncoveredColor.addMouseListener(uncoveredColorListener); 70 | } else { 71 | coveredColor.removeMouseListener(coveredColorListener); 72 | uncoveredColor.removeMouseListener(uncoveredColorListener); 73 | } 74 | } 75 | 76 | private class PickerListener implements MouseListener { 77 | private JPanel panel; 78 | private JPanel picker; 79 | 80 | public PickerListener(JPanel panel, JPanel picker) { 81 | this.panel = panel; 82 | this.picker = picker; 83 | } 84 | 85 | public void mouseClicked(MouseEvent mouseEvent) { 86 | Color picked = JColorChooser.showDialog(panel, "", picker.getBackground()); 87 | 88 | if (picked != null) { 89 | picker.setBackground(picked); 90 | } 91 | } 92 | 93 | public void mousePressed(MouseEvent mouseEvent) { 94 | } 95 | 96 | public void mouseReleased(MouseEvent mouseEvent) { 97 | } 98 | 99 | public void mouseEntered(MouseEvent mouseEvent) { 100 | } 101 | 102 | public void mouseExited(MouseEvent mouseEvent) { 103 | } 104 | } 105 | 106 | private class BrowseListener implements ActionListener { 107 | JTextField field; 108 | FileChooserDescriptor descriptor; 109 | 110 | public BrowseListener(JTextField field, FileChooserDescriptor descriptor) { 111 | this.field = field; 112 | this.descriptor = descriptor; 113 | } 114 | 115 | public void actionPerformed(ActionEvent actionEvent) { 116 | VirtualFile[] files = FileChooser.chooseFiles(descriptor, null, null); 117 | 118 | if (files.length > 0) { 119 | field.setText(files[0].getPath()); 120 | } 121 | } 122 | } 123 | } -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/config/ConfigValues.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.config; 2 | 3 | import com.intellij.ide.util.PropertiesComponent; 4 | import com.intellij.openapi.editor.colors.ColorKey; 5 | import com.intellij.openapi.editor.colors.EditorColorsManager; 6 | import com.intellij.openapi.editor.colors.EditorColorsScheme; 7 | import com.intellij.openapi.editor.colors.TextAttributesKey; 8 | import com.intellij.openapi.editor.colors.ex.DefaultColorSchemesManager; 9 | import com.intellij.openapi.editor.colors.impl.DefaultColorsScheme; 10 | import com.intellij.rt.coverage.data.LineCoverage; 11 | import com.intellij.util.xmlb.annotations.Transient; 12 | 13 | import java.awt.*; 14 | 15 | /** 16 | * @author Zsolt Takacs 17 | */ 18 | public class ConfigValues { 19 | public static final String CONFIG_ENABLED = "cc.takacs.php_codeverage_display.enabled"; 20 | public String cloverXmlPath = ""; 21 | public int coveredR = 0; 22 | public int coveredG = 255; 23 | public int coveredB = 0; 24 | public int coveredA = 255; // opaque by default 25 | public int uncoveredR = 255; 26 | public int uncoveredG = 0; 27 | public int uncoveredB = 0; 28 | public int uncoveredA = 255; // opaque by default 29 | public boolean highlightSides = false; 30 | public boolean highlightLines = true; 31 | public boolean highlightErrors = false; 32 | public boolean directoryMapping = false; 33 | public String mapDirectoryFrom = ""; 34 | public String mapDirectoryTo = ""; 35 | public boolean useColorScheme = true; 36 | 37 | //Should we use the php storm coverage suite? 38 | public boolean useCoverageSuite = true; 39 | 40 | 41 | public void loadFromInstance(ConfigValues values) { 42 | cloverXmlPath = values.cloverXmlPath; 43 | coveredR = values.coveredR; 44 | coveredG = values.coveredG; 45 | coveredB = values.coveredB; 46 | coveredA = values.coveredA; 47 | uncoveredR = values.uncoveredR; 48 | uncoveredG = values.uncoveredG; 49 | uncoveredB = values.uncoveredB; 50 | uncoveredA = values.uncoveredA; 51 | highlightSides = values.highlightSides; 52 | highlightLines = values.highlightLines; 53 | highlightErrors = values.highlightErrors; 54 | directoryMapping = values.directoryMapping; 55 | mapDirectoryFrom = values.mapDirectoryFrom; 56 | mapDirectoryTo = values.mapDirectoryTo; 57 | useCoverageSuite = values.useCoverageSuite; 58 | useColorScheme = values.useColorScheme; 59 | } 60 | 61 | public void setCloverXmlPath(String cloverXmlPath) { 62 | this.cloverXmlPath = cloverXmlPath; 63 | } 64 | 65 | @Transient 66 | public String getCloverXmlPath() { 67 | return cloverXmlPath; 68 | } 69 | 70 | @Transient 71 | public Color getCoveredColor() { 72 | return new Color(coveredR, coveredG, coveredB, coveredA); 73 | } 74 | 75 | public void setCoveredColor(Color color) { 76 | coveredR = color.getRed(); 77 | coveredG = color.getGreen(); 78 | coveredB = color.getBlue(); 79 | coveredA = color.getAlpha(); 80 | } 81 | 82 | @Transient 83 | public Color getUncoveredColor() { 84 | return new Color(uncoveredR, uncoveredG, uncoveredB, uncoveredA); 85 | } 86 | 87 | public void setUncoveredColor(Color color) { 88 | uncoveredR = color.getRed(); 89 | uncoveredG = color.getGreen(); 90 | uncoveredB = color.getBlue(); 91 | uncoveredA = color.getAlpha(); 92 | } 93 | 94 | @Transient 95 | public Color getCoveredColorToDraw() { 96 | if (useColorScheme) { 97 | EditorColorsScheme scheme = EditorColorsManager.getInstance().getGlobalScheme(); 98 | return scheme.getAttributes(TextAttributesKey.find("LINE_FULL_COVERAGE")).getForegroundColor(); 99 | 100 | } else { 101 | return new Color(coveredR, coveredG, coveredB, coveredA); 102 | } 103 | } 104 | 105 | @Transient 106 | public Color getUncoveredColorToDraw() { 107 | if (useColorScheme) { 108 | EditorColorsScheme scheme = EditorColorsManager.getInstance().getGlobalScheme(); 109 | return scheme.getAttributes(TextAttributesKey.find("LINE_NONE_COVERAGE")).getForegroundColor(); 110 | 111 | } else { 112 | return new Color(coveredR, coveredG, coveredB, coveredA); 113 | } 114 | } 115 | 116 | /** 117 | * If we should highlight lines 118 | * 119 | * @return boolean 120 | */ 121 | public static boolean isEnabled() { 122 | final PropertiesComponent propertiesComponent = PropertiesComponent.getInstance(); 123 | return propertiesComponent.getBoolean(ConfigValues.CONFIG_ENABLED, true); 124 | } 125 | } 126 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/config/PluginConfiguration.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.config; 2 | 3 | import cc.takacs.php_codeverage_display.display.DisplayHandler; 4 | import com.intellij.openapi.components.PersistentStateComponent; 5 | import com.intellij.openapi.components.State; 6 | import com.intellij.openapi.options.Configurable; 7 | import com.intellij.openapi.options.ConfigurationException; 8 | import org.jetbrains.annotations.Nls; 9 | 10 | import javax.swing.*; 11 | 12 | /** 13 | * @author Zsolt Takacs 14 | */ 15 | @State(name = "PHPUnitCoveragePlugin", storages = {@com.intellij.openapi.components.Storage(id = "config", file = "$WORKSPACE_FILE$")}) 16 | public class PluginConfiguration implements Configurable, PersistentStateComponent { 17 | private ConfigPanel configPanel; 18 | private DisplayHandler displayHandler; 19 | private ConfigValues configValues; 20 | 21 | public PluginConfiguration(DisplayHandler displayHandler, ConfigValues configValues) { 22 | this.configValues = configValues; 23 | this.displayHandler = displayHandler; 24 | } 25 | 26 | public ConfigValues getState() { 27 | return configValues; 28 | } 29 | 30 | public void loadState(ConfigValues values) { 31 | configValues.loadFromInstance(values); 32 | } 33 | 34 | @Nls 35 | public String getDisplayName() { 36 | return "PHPUnit Coverage"; 37 | } 38 | 39 | public JComponent createComponent() { 40 | configPanel = new ConfigPanel(); 41 | 42 | return configPanel.panel; 43 | } 44 | 45 | public boolean isModified() { 46 | return 47 | !configPanel.cloverLocation.getText().equals(configValues.cloverXmlPath) || 48 | !configValues.getCoveredColor().equals(configPanel.coveredColor.getBackground()) || 49 | !configValues.getUncoveredColor().equals(configPanel.uncoveredColor.getBackground()) || 50 | configValues.highlightLines != configPanel.lineCheckBox.isSelected() || 51 | configValues.highlightSides != configPanel.sideCheckBox.isSelected() || 52 | configValues.highlightErrors != configPanel.errorCheckBox.isSelected() || 53 | configValues.useCoverageSuite != configPanel.useCoverageSuite.isSelected() || 54 | configValues.directoryMapping != configPanel.dirTranslation.isSelected() || 55 | !configValues.mapDirectoryFrom.equals(configPanel.localDir.getText()) || 56 | !configValues.mapDirectoryTo.equals(configPanel.remoteDir.getText()) || 57 | configValues.useColorScheme != configPanel.useColorScheme.isSelected(); 58 | } 59 | 60 | public void apply() throws ConfigurationException { 61 | configValues.setCloverXmlPath(configPanel.cloverLocation.getText()); 62 | configValues.setCoveredColor(configPanel.coveredColor.getBackground()); 63 | configValues.setUncoveredColor(configPanel.uncoveredColor.getBackground()); 64 | configValues.highlightLines = configPanel.lineCheckBox.isSelected(); 65 | configValues.highlightSides = configPanel.sideCheckBox.isSelected(); 66 | configValues.highlightErrors = configPanel.errorCheckBox.isSelected(); 67 | configValues.useCoverageSuite = configPanel.useCoverageSuite.isSelected(); 68 | configValues.directoryMapping = configPanel.dirTranslation.isSelected(); 69 | configValues.mapDirectoryFrom = configPanel.localDir.getText(); 70 | configValues.mapDirectoryTo = configPanel.remoteDir.getText(); 71 | configValues.useColorScheme = configPanel.useColorScheme.isSelected(); 72 | 73 | displayHandler.initializeMap(); 74 | displayHandler.updateDisplays(); 75 | } 76 | 77 | public void reset() { 78 | configPanel.cloverLocation.setText(configValues.cloverXmlPath); 79 | configPanel.coveredColor.setBackground(configValues.getCoveredColor()); 80 | configPanel.uncoveredColor.setBackground(configValues.getUncoveredColor()); 81 | configPanel.sideCheckBox.setSelected(configValues.highlightSides); 82 | configPanel.lineCheckBox.setSelected(configValues.highlightLines); 83 | configPanel.errorCheckBox.setSelected(configValues.highlightErrors); 84 | configPanel.useCoverageSuite.setSelected(configValues.useCoverageSuite); 85 | configPanel.dirTranslation.setSelected(configValues.directoryMapping); 86 | configPanel.localDir.setText(configValues.mapDirectoryFrom); 87 | configPanel.remoteDir.setText(configValues.mapDirectoryTo); 88 | 89 | configPanel.localDir.setEnabled(configPanel.dirTranslation.isSelected()); 90 | configPanel.remoteDir.setEnabled(configPanel.dirTranslation.isSelected()); 91 | configPanel.browseLocalDir.setEnabled(configPanel.dirTranslation.isSelected()); 92 | configPanel.useColorScheme.setSelected(configValues.useColorScheme); 93 | } 94 | 95 | public void disposeUIResources() { 96 | } 97 | 98 | public Icon getIcon() { 99 | return null; 100 | } 101 | 102 | public String getHelpTopic() { 103 | return null; 104 | } 105 | 106 | public DisplayHandler getDisplayHandler() { 107 | return displayHandler; 108 | } 109 | } 110 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/display/CoverageDisplay.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.display; 2 | 3 | import cc.takacs.php_codeverage_display.clover.FileCoverage; 4 | import cc.takacs.php_codeverage_display.clover.LineCoverage; 5 | import cc.takacs.php_codeverage_display.config.ConfigValues; 6 | import com.intellij.openapi.editor.Editor; 7 | import com.intellij.openapi.editor.event.DocumentEvent; 8 | import com.intellij.openapi.editor.event.DocumentListener; 9 | 10 | import java.util.Iterator; 11 | 12 | /** 13 | * @author Zsolt Takacs 14 | */ 15 | public class CoverageDisplay implements DocumentListener { 16 | private FileCoverage fileCoverage; 17 | private CoverageHighlighter coverageHighlighter; 18 | private ConfigValues configValues; 19 | 20 | public CoverageDisplay(Editor editor, ConfigValues configValues) { 21 | this.configValues = configValues; 22 | fileCoverage = new FileCoverage(); 23 | coverageHighlighter = new CoverageHighlighter(editor, configValues); 24 | } 25 | 26 | public void setFileCoverage(FileCoverage fileCoverage) { 27 | this.fileCoverage = fileCoverage; 28 | } 29 | 30 | public void beforeDocumentChange(DocumentEvent event) { 31 | clear(); 32 | } 33 | 34 | public void documentChanged(DocumentEvent event) { 35 | } 36 | 37 | public synchronized void redraw() { 38 | clear(); 39 | 40 | //If the coverage.xml file has any lines AND if highlight is enabled 41 | if (fileCoverage.hasLines() && ConfigValues.isEnabled()) { 42 | int firstLineNumber = fileCoverage.getKeys().iterator().next(); 43 | boolean lastLineWasExecuted = fileCoverage.getLine(firstLineNumber).isExecuted(); 44 | int lastDifferentLine = firstLineNumber; 45 | int lastLineNumber = firstLineNumber - 1; 46 | int lastLineExecuted = fileCoverage.getLine(firstLineNumber).getExecuted(); 47 | 48 | Iterator iterator = fileCoverage.getKeys().iterator(); 49 | while (iterator.hasNext()) { 50 | int lineNumber = iterator.next(); 51 | LineCoverage lineCoverage = fileCoverage.getLine(lineNumber); 52 | 53 | if (lineCoverage.isExecuted() != lastLineWasExecuted || lastLineNumber != lineNumber - 1) { 54 | if (lastLineWasExecuted) { 55 | this.coverageHighlighter.highlightLines(configValues.getCoveredColorToDraw(), lastDifferentLine, lastLineNumber, lastLineExecuted); 56 | } else { 57 | this.coverageHighlighter.highlightLines(configValues.getUncoveredColorToDraw(), lastDifferentLine, lastLineNumber, lastLineExecuted); 58 | } 59 | 60 | lastLineExecuted = lineCoverage.getExecuted(); 61 | lastDifferentLine = lineNumber; 62 | lastLineWasExecuted = lineCoverage.isExecuted(); 63 | } 64 | 65 | lastLineNumber = lineNumber; 66 | 67 | if (!iterator.hasNext()) { 68 | if (lastLineWasExecuted) { 69 | this.coverageHighlighter.highlightLines(configValues.getCoveredColorToDraw(), lastDifferentLine, lastLineNumber, lastLineExecuted); 70 | } else { 71 | this.coverageHighlighter.highlightLines(configValues.getUncoveredColorToDraw(), lastDifferentLine, lastLineNumber, lastLineExecuted); 72 | } 73 | } 74 | } 75 | } 76 | } 77 | 78 | private void clear() { 79 | coverageHighlighter.clear(); 80 | } 81 | } -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/display/CoverageHighlighter.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.display; 2 | 3 | import cc.takacs.php_codeverage_display.config.ConfigValues; 4 | import com.intellij.openapi.editor.Document; 5 | import com.intellij.openapi.editor.Editor; 6 | import com.intellij.openapi.editor.markup.HighlighterTargetArea; 7 | import com.intellij.openapi.editor.markup.MarkupModel; 8 | import com.intellij.openapi.editor.markup.RangeHighlighter; 9 | import com.intellij.openapi.editor.markup.TextAttributes; 10 | 11 | import java.awt.*; 12 | import java.util.ArrayList; 13 | 14 | /** 15 | * @author Zsolt Takacs 16 | */ 17 | public class CoverageHighlighter { 18 | private Editor editor; 19 | private ArrayList highlights; 20 | private ConfigValues configValues; 21 | 22 | public CoverageHighlighter(Editor editor, ConfigValues configValues) { 23 | this.editor = editor; 24 | this.configValues = configValues; 25 | highlights = new ArrayList(); 26 | } 27 | 28 | public void highlightLines(final Color color, int fromLine, int toLine, int executed) { 29 | Document document = this.editor.getDocument(); 30 | 31 | SideHighlighter sideHighlighter = new SideHighlighter(); 32 | LineHighlighter lineHighlighter = new LineHighlighter(); 33 | ErrorStripeMarkHighlighter errorStripeMarkHighlighter = new ErrorStripeMarkHighlighter(); 34 | 35 | if (toLine <= document.getLineCount()) { 36 | TextAttributes attributes = new TextAttributes(); 37 | 38 | RangeHighlighter highlighter = createRangeHighlighter(fromLine, toLine, attributes); 39 | 40 | if (configValues.highlightLines) { 41 | lineHighlighter.highlight(highlighter, attributes, color, executed); 42 | } 43 | 44 | if (configValues.highlightSides) { 45 | sideHighlighter.highlight(highlighter, attributes, color, executed); 46 | } 47 | 48 | if (configValues.highlightErrors) { 49 | errorStripeMarkHighlighter.highlight(highlighter, attributes, color, executed); 50 | } 51 | 52 | highlights.add(highlighter); 53 | } 54 | } 55 | 56 | private RangeHighlighter createRangeHighlighter(int fromLine, int toLine, TextAttributes attributes) { 57 | Document document = this.editor.getDocument(); 58 | 59 | int lineStartOffset = document.getLineStartOffset(Math.max(0, fromLine - 1)); 60 | int lineEndOffset = document.getLineEndOffset(Math.max(0, toLine - 1)); 61 | 62 | return this.editor.getMarkupModel().addRangeHighlighter( 63 | lineStartOffset, lineEndOffset, 3333, attributes, HighlighterTargetArea.LINES_IN_RANGE 64 | ); 65 | } 66 | 67 | public void clear() { 68 | MarkupModel model = this.editor.getMarkupModel(); 69 | 70 | for (RangeHighlighter rangeHighlighter : highlights) { 71 | model.removeHighlighter(rangeHighlighter); 72 | } 73 | 74 | highlights.clear(); 75 | } 76 | } 77 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/display/DisplayDrawerThread.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.display; 2 | 3 | /** 4 | * @author Zsolt Takacs 5 | */ 6 | public class DisplayDrawerThread implements Runnable { 7 | private CoverageDisplay display; 8 | 9 | public DisplayDrawerThread(CoverageDisplay display) { 10 | this.display = display; 11 | } 12 | 13 | public void run() { 14 | display.redraw(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/display/DisplayHandler.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.display; 2 | 3 | import cc.takacs.php_codeverage_display.clover.CloverXmlReader; 4 | import cc.takacs.php_codeverage_display.clover.CoverageCollection; 5 | import cc.takacs.php_codeverage_display.clover.FileCoverage; 6 | import cc.takacs.php_codeverage_display.config.ConfigValues; 7 | import cc.takacs.php_codeverage_display.displaymap.CanonicalDisplayMapDecorator; 8 | import cc.takacs.php_codeverage_display.displaymap.FilenameDisplayMap; 9 | import cc.takacs.php_codeverage_display.displaymap.SimpleFilenameDisplayMap; 10 | import cc.takacs.php_codeverage_display.displaymap.UnixToWindowsDisplayMapDecorator; 11 | import cc.takacs.php_codeverage_display.displaymap.WindowsDisplayMapDecorator; 12 | import com.intellij.openapi.editor.Editor; 13 | import com.intellij.openapi.fileEditor.FileEditor; 14 | import com.intellij.openapi.fileEditor.FileEditorManager; 15 | import com.intellij.openapi.fileEditor.TextEditor; 16 | import com.intellij.openapi.project.Project; 17 | import com.intellij.openapi.vfs.VirtualFile; 18 | import org.apache.commons.lang.SystemUtils; 19 | 20 | import javax.swing.*; 21 | import java.io.File; 22 | 23 | /** 24 | * @author Zsolt Takacs 25 | */ 26 | public class DisplayHandler { 27 | private FilenameDisplayMap map; 28 | private ConfigValues configValues; 29 | private Project project; 30 | 31 | public DisplayHandler(ConfigValues configValues, Project project) { 32 | this.configValues = configValues; 33 | this.project = project; 34 | 35 | initializeMap(); 36 | } 37 | 38 | public void initializeMap() { 39 | createDisplayMap(); 40 | 41 | for (VirtualFile file : FileEditorManager.getInstance(project).getOpenFiles()) { 42 | Editor editor = null; 43 | 44 | for (FileEditor fileEditor : FileEditorManager.getInstance(project).getEditors(file)) { 45 | if ((fileEditor instanceof TextEditor)) { 46 | editor = ((TextEditor) fileEditor).getEditor(); 47 | break; 48 | } 49 | } 50 | 51 | if (editor != null) { 52 | addDisplayForEditor(editor, file.getPath()); 53 | } 54 | } 55 | } 56 | 57 | private void createDisplayMap() 58 | { 59 | if (configValues.directoryMapping) { 60 | this.map = new UnixToWindowsDisplayMapDecorator(new SimpleFilenameDisplayMap(), configValues); 61 | } else if (SystemUtils.IS_OS_WINDOWS) { 62 | this.map = new WindowsDisplayMapDecorator(new SimpleFilenameDisplayMap()); 63 | } else { 64 | this.map = new CanonicalDisplayMapDecorator(new SimpleFilenameDisplayMap()); 65 | } 66 | } 67 | 68 | public void updateDisplays() { 69 | CloverXmlReader reader = new CloverXmlReader(getCloverXmlPath()); 70 | CoverageCollection fileCoverages = reader.parse(); 71 | 72 | for (String filename : fileCoverages.getKeys()) { 73 | FileCoverage fileCoverage = fileCoverages.get(filename); 74 | 75 | CoverageDisplay display = map.get(filename); 76 | 77 | if (display != null) { 78 | display.setFileCoverage(fileCoverage); 79 | 80 | SwingUtilities.invokeLater(new DisplayDrawerThread(display)); 81 | } 82 | } 83 | } 84 | 85 | /** 86 | * Get the proper path to a clover report 87 | * 88 | * @return String 89 | */ 90 | private String getCloverXmlPath() { 91 | String configPath=configValues.getCloverXmlPath(); 92 | File xmlFile = null; 93 | if(configValues.useCoverageSuite){ 94 | xmlFile = findXmlFromCache(); 95 | } 96 | 97 | if(configPath!=null){ 98 | File configFile = new File(configPath); 99 | 100 | //if file exists 101 | if(configFile.exists()){ 102 | 103 | //use the last modified file 104 | if (xmlFile == null || xmlFile.lastModified() < configFile.lastModified()) { 105 | xmlFile=configFile; 106 | } 107 | } 108 | } 109 | 110 | if(xmlFile == null){ 111 | return null; 112 | } 113 | 114 | return xmlFile.getAbsolutePath(); 115 | } 116 | 117 | /** 118 | * Get last modified coverage file from cache 119 | * @return File 120 | */ 121 | private File findXmlFromCache(){ 122 | File dir = new File(getCachePath()); 123 | 124 | File[] files = dir.listFiles(); 125 | if (files==null || files.length == 0) { 126 | return null; 127 | } 128 | 129 | File lastModifiedFile = files[0]; 130 | for (int i = 1; i < files.length; i++) { 131 | if (lastModifiedFile.lastModified() < files[i].lastModified()) { 132 | lastModifiedFile = files[i]; 133 | } 134 | } 135 | 136 | return lastModifiedFile; 137 | } 138 | 139 | /** 140 | * Get the path to the coverage cache folder 141 | * 142 | * 143 | * @return String 144 | */ 145 | private String getCachePath(){ 146 | String separator=System.getProperty("file.separator"); 147 | String base=System.getProperty("idea.system.path"); 148 | 149 | if(base==null){ 150 | base=System.getProperty("user.home"); 151 | 152 | //if mac... 153 | if(System.getProperty("os.name").equals("Mac OS X")){ 154 | base+=separator+"Library"+separator+"Caches"+separator+ 155 | System.getProperty("idea.paths.selector"); 156 | } 157 | else{//if windows or linux 158 | base+=separator+"."+System.getProperty("idea.paths.selector")+separator+"system"; 159 | } 160 | 161 | } 162 | 163 | base+=separator+"coverage"+separator; 164 | return base; 165 | } 166 | 167 | public void addDisplayForEditor(Editor editor, String file) { 168 | CoverageDisplay display = new CoverageDisplay(editor, configValues); 169 | 170 | editor.getDocument().addDocumentListener(display); 171 | 172 | this.map.add(file, display); 173 | 174 | //update the display each time a file is opened 175 | this.updateDisplays(); 176 | } 177 | 178 | public void removeDisplayForFile(String file) { 179 | this.map.remove(file); 180 | } 181 | 182 | public void reassignDisplay(String fromFile, String toFile) { 183 | CoverageDisplay display = map.get(fromFile); 184 | 185 | if (display != null) { 186 | map.remove(fromFile); 187 | map.add(toFile, display); 188 | } 189 | } 190 | 191 | public void redrawIfXmlChanged(String path) { 192 | if (path.equals(configValues.cloverXmlPath)) { 193 | updateDisplays(); 194 | } 195 | } 196 | } 197 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/display/ErrorStripeMarkHighlighter.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.display; 2 | 3 | import com.intellij.openapi.editor.markup.RangeHighlighter; 4 | import com.intellij.openapi.editor.markup.TextAttributes; 5 | 6 | import java.awt.*; 7 | 8 | /** 9 | * @author Zsolt Takacs 10 | */ 11 | public class ErrorStripeMarkHighlighter implements Highlighter { 12 | public void highlight(RangeHighlighter lineHighlighter, TextAttributes textAttributes, Color color, int executed) { 13 | lineHighlighter.setErrorStripeMarkColor(color); 14 | String tooltip = executed > 0 ? "Line executed " + executed + " times" : "Line was not executed"; 15 | lineHighlighter.setErrorStripeTooltip(tooltip); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/display/Highlighter.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.display; 2 | 3 | import com.intellij.openapi.editor.markup.RangeHighlighter; 4 | import com.intellij.openapi.editor.markup.TextAttributes; 5 | 6 | import java.awt.*; 7 | 8 | /** 9 | * @author Zsolt Takacs 10 | */ 11 | public interface Highlighter { 12 | void highlight(RangeHighlighter lineHighlighter, TextAttributes textAttributes, Color color, int executed); 13 | } 14 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/display/LineHighlighter.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.display; 2 | 3 | import com.intellij.openapi.editor.markup.RangeHighlighter; 4 | import com.intellij.openapi.editor.markup.TextAttributes; 5 | 6 | import java.awt.*; 7 | 8 | /** 9 | * @author Zsolt Takacs 10 | */ 11 | public class LineHighlighter implements Highlighter { 12 | public void highlight(RangeHighlighter lineHighlighter, TextAttributes textAttributes, Color color, int executed) { 13 | textAttributes.setBackgroundColor(color); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/display/SideHighlighter.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.display; 2 | 3 | import com.intellij.openapi.editor.Editor; 4 | import com.intellij.openapi.editor.markup.LineMarkerRenderer; 5 | import com.intellij.openapi.editor.markup.RangeHighlighter; 6 | import com.intellij.openapi.editor.markup.TextAttributes; 7 | 8 | import java.awt.*; 9 | 10 | /** 11 | * @author Zsolt Takacs 12 | */ 13 | public class SideHighlighter implements Highlighter { 14 | public void highlight(RangeHighlighter lineHighlighter, TextAttributes textAttributes, final Color color, int executed) { 15 | lineHighlighter.setLineMarkerRenderer(new LineMarkerRenderer() { 16 | public void paint(Editor editor, Graphics graphics, Rectangle rectangle) { 17 | Color origColor = graphics.getColor(); 18 | try { 19 | graphics.setColor(color); 20 | int lineHeight = editor.getLineHeight(); 21 | graphics.drawRect(rectangle.x, rectangle.y, rectangle.width, rectangle.height + lineHeight); 22 | graphics.fillRect(rectangle.x, rectangle.y, rectangle.width, rectangle.height + lineHeight); 23 | } finally { 24 | graphics.setColor(origColor); 25 | } 26 | } 27 | }); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/displaymap/CanonicalDisplayMapDecorator.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.displaymap; 2 | 3 | import cc.takacs.php_codeverage_display.display.CoverageDisplay; 4 | 5 | import java.io.File; 6 | import java.io.IOException; 7 | 8 | /** 9 | * @author Zsolt Takacs 10 | */ 11 | public class CanonicalDisplayMapDecorator implements FilenameDisplayMap { 12 | private FilenameDisplayMap decorated; 13 | 14 | public CanonicalDisplayMapDecorator(FilenameDisplayMap decorated) { 15 | this.decorated = decorated; 16 | } 17 | 18 | public void add(String filename, CoverageDisplay display) { 19 | this.decorated.add(convertPathToCanonical(filename), display); 20 | } 21 | 22 | public void remove(String filename) { 23 | this.decorated.remove(convertPathToCanonical(filename)); 24 | } 25 | 26 | public CoverageDisplay get(String filename) { 27 | return this.decorated.get(filename); 28 | } 29 | 30 | private String convertPathToCanonical(String filename) { 31 | try { 32 | return new File(filename).getCanonicalPath(); 33 | } catch (IOException e) { 34 | return filename; 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/displaymap/FilenameDisplayMap.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.displaymap; 2 | 3 | import cc.takacs.php_codeverage_display.display.CoverageDisplay; 4 | 5 | /** 6 | * @author Zsolt Takacs 7 | */ 8 | public interface FilenameDisplayMap { 9 | void add(String filename, CoverageDisplay display); 10 | 11 | void remove(String filename); 12 | 13 | CoverageDisplay get(String filename); 14 | } 15 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/displaymap/SimpleFilenameDisplayMap.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.displaymap; 2 | 3 | import cc.takacs.php_codeverage_display.display.CoverageDisplay; 4 | 5 | import java.util.HashMap; 6 | 7 | /** 8 | * @author Zsolt Takacs 9 | */ 10 | public class SimpleFilenameDisplayMap implements FilenameDisplayMap 11 | { 12 | private HashMap map; 13 | 14 | public SimpleFilenameDisplayMap() { 15 | map = new HashMap(); 16 | } 17 | 18 | public synchronized void add(String filename, CoverageDisplay display) { 19 | this.map.put(filename, display); 20 | } 21 | 22 | public synchronized void remove(String filename) { 23 | this.map.remove(filename); 24 | } 25 | 26 | public synchronized CoverageDisplay get(String filename) { 27 | return this.map.get(filename); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/displaymap/UnixToWindowsDisplayMapDecorator.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.displaymap; 2 | 3 | import cc.takacs.php_codeverage_display.config.ConfigValues; 4 | import cc.takacs.php_codeverage_display.display.CoverageDisplay; 5 | 6 | /** 7 | * @author Zsolt Takacs 8 | */ 9 | public class UnixToWindowsDisplayMapDecorator implements FilenameDisplayMap { 10 | private FilenameDisplayMap decorated; 11 | private ConfigValues configValues; 12 | 13 | public UnixToWindowsDisplayMapDecorator(FilenameDisplayMap decorated, ConfigValues configValues) { 14 | this.decorated = decorated; 15 | this.configValues = configValues; 16 | } 17 | 18 | public void add(String filename, CoverageDisplay display) { 19 | decorated.add(convertFilename(filename), display); 20 | } 21 | 22 | public void remove(String filename) { 23 | decorated.remove(convertFilename(filename)); 24 | } 25 | 26 | public CoverageDisplay get(String filename) { 27 | return decorated.get(filename); 28 | } 29 | 30 | private String convertFilename(String filename) { 31 | if (filename.startsWith(configValues.mapDirectoryFrom)) { 32 | filename = configValues.mapDirectoryTo + "/" + filename.substring(configValues.mapDirectoryFrom.length() + 1); 33 | } 34 | 35 | return filename; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/displaymap/WindowsDisplayMapDecorator.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.displaymap; 2 | 3 | import cc.takacs.php_codeverage_display.display.CoverageDisplay; 4 | 5 | /** 6 | * @author Zsolt Takacs 7 | */ 8 | public class WindowsDisplayMapDecorator implements FilenameDisplayMap 9 | { 10 | private FilenameDisplayMap decorated; 11 | 12 | public WindowsDisplayMapDecorator(FilenameDisplayMap decorated) { 13 | this.decorated = decorated; 14 | } 15 | 16 | public void add(String filename, CoverageDisplay display) { 17 | this.decorated.add(filename, display); 18 | } 19 | 20 | public void remove(String filename) { 21 | this.decorated.remove(filename); 22 | } 23 | 24 | public CoverageDisplay get(String filename) { 25 | return this.decorated.get(normalizeWindowsPHPUnitPath(filename)); 26 | } 27 | 28 | private String normalizeWindowsPHPUnitPath(String filename) 29 | { 30 | if (filename.charAt(0) == '/') { 31 | filename = filename.substring(1); 32 | } 33 | 34 | filename = filename.replaceAll("\\\\", "/"); 35 | 36 | return filename; 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/listener/EditorManagerListener.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.listener; 2 | 3 | import cc.takacs.php_codeverage_display.display.DisplayHandler; 4 | import com.intellij.openapi.editor.Editor; 5 | import com.intellij.openapi.fileEditor.FileEditor; 6 | import com.intellij.openapi.fileEditor.FileEditorManager; 7 | import com.intellij.openapi.fileEditor.FileEditorManagerEvent; 8 | import com.intellij.openapi.fileEditor.FileEditorManagerListener; 9 | import com.intellij.openapi.fileEditor.TextEditor; 10 | import com.intellij.openapi.vfs.VirtualFile; 11 | 12 | /** 13 | * @author Zsolt Takacs 14 | */ 15 | public class EditorManagerListener implements FileEditorManagerListener { 16 | private DisplayHandler displayHandler; 17 | 18 | public EditorManagerListener(DisplayHandler displayHandler) { 19 | this.displayHandler = displayHandler; 20 | } 21 | 22 | public void fileOpened(FileEditorManager source, VirtualFile file) { 23 | Editor editor = null; 24 | 25 | for (FileEditor fileEditor : source.getEditors(file)) { 26 | if ((fileEditor instanceof TextEditor)) { 27 | editor = ((TextEditor) fileEditor).getEditor(); 28 | break; 29 | } 30 | } 31 | 32 | if (editor != null) { 33 | this.displayHandler.addDisplayForEditor(editor, file.getPath()); 34 | } 35 | } 36 | 37 | public void fileClosed(FileEditorManager source, VirtualFile file) { 38 | this.displayHandler.removeDisplayForFile(file.getPath()); 39 | } 40 | 41 | public void selectionChanged(FileEditorManagerEvent event) { 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/listener/ExecListener.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.listener; 2 | 3 | import cc.takacs.php_codeverage_display.display.DisplayHandler; 4 | import com.intellij.execution.ExecutionListener; 5 | import com.intellij.execution.configurations.RunProfile; 6 | import com.intellij.execution.process.ProcessHandler; 7 | import com.intellij.execution.runners.ExecutionEnvironment; 8 | import org.jetbrains.annotations.NotNull; 9 | 10 | /** 11 | * @author Zsolt Takacs 12 | */ 13 | public class ExecListener implements ExecutionListener { 14 | private DisplayHandler displayHandler; 15 | 16 | public ExecListener(DisplayHandler displayHandler) { 17 | this.displayHandler = displayHandler; 18 | } 19 | 20 | public void processTerminated(@NotNull RunProfile runProfile, @NotNull ProcessHandler processHandler) { 21 | if (isPHPUnitRun(runProfile)) { 22 | this.displayHandler.updateDisplays(); 23 | } 24 | } 25 | 26 | private boolean isPHPUnitRun(RunProfile runProfile) { 27 | // hack to determine if process was a phpunit run 28 | final String className = runProfile.getClass().toString(); 29 | return isPhpStorm3PhpunitRun(className) || isPhpStorm4PhpunitRun(className); 30 | } 31 | 32 | private boolean isPhpStorm4PhpunitRun(String className) { 33 | return className.startsWith("class com.jetbrains.php.phpunit."); 34 | } 35 | 36 | private boolean isPhpStorm3PhpunitRun(String className) { 37 | return className.startsWith("class com.jetbrains.php.run.phpunit."); 38 | } 39 | 40 | public void processStartScheduled(String s, ExecutionEnvironment executionEnvironment) { 41 | } 42 | 43 | public void processStarting(String s, @NotNull ExecutionEnvironment executionEnvironment) { 44 | } 45 | 46 | public void processNotStarted(String s, @NotNull ExecutionEnvironment executionEnvironment) { 47 | } 48 | 49 | public void processStarted(String s, @NotNull ExecutionEnvironment executionEnvironment, @NotNull ProcessHandler processHandler) { 50 | } 51 | 52 | public void processTerminating(@NotNull RunProfile runProfile, @NotNull ProcessHandler processHandler) { 53 | } 54 | } 55 | 56 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/listener/FileOperationListener.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.listener; 2 | 3 | import cc.takacs.php_codeverage_display.display.DisplayHandler; 4 | import com.intellij.openapi.vfs.VirtualFileCopyEvent; 5 | import com.intellij.openapi.vfs.VirtualFileEvent; 6 | import com.intellij.openapi.vfs.VirtualFileListener; 7 | import com.intellij.openapi.vfs.VirtualFileMoveEvent; 8 | import com.intellij.openapi.vfs.VirtualFilePropertyEvent; 9 | 10 | import java.io.File; 11 | 12 | /** 13 | * @author Zsolt Takacs 14 | */ 15 | public class FileOperationListener implements VirtualFileListener { 16 | private DisplayHandler displayHandler; 17 | 18 | public FileOperationListener(DisplayHandler displayHandler) { 19 | this.displayHandler = displayHandler; 20 | } 21 | 22 | public void beforePropertyChange(VirtualFilePropertyEvent event) { 23 | if ( 24 | event.getPropertyName().equals("name") && 25 | event.getFile().getParent() != null 26 | 27 | ) { 28 | String newPath = event.getFile().getParent().getPath() + File.separator + event.getNewValue(); 29 | displayHandler.reassignDisplay(event.getFile().getPath(), newPath); 30 | } 31 | } 32 | 33 | public void beforeFileMovement(VirtualFileMoveEvent event) { 34 | String newPath = event.getNewParent().getPath() + File.separator + event.getFileName(); 35 | displayHandler.reassignDisplay(event.getFile().getPath(), newPath); 36 | } 37 | 38 | public void contentsChanged(VirtualFileEvent event) { 39 | displayHandler.redrawIfXmlChanged(event.getFile().getPath()); 40 | } 41 | 42 | public void fileMoved(VirtualFileMoveEvent event) { 43 | } 44 | 45 | public void propertyChanged(VirtualFilePropertyEvent event) { 46 | } 47 | 48 | public void fileCreated(VirtualFileEvent event) { 49 | } 50 | 51 | public void fileDeleted(VirtualFileEvent event) { 52 | } 53 | 54 | public void fileCopied(VirtualFileCopyEvent event) { 55 | } 56 | 57 | public void beforeContentsChange(VirtualFileEvent event) { 58 | } 59 | 60 | public void beforeFileDeletion(VirtualFileEvent event) { 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/toolbar/ToggleEnable.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.toolbar; 2 | 3 | import cc.takacs.php_codeverage_display.config.ConfigValues; 4 | import cc.takacs.php_codeverage_display.config.PluginConfiguration; 5 | import cc.takacs.php_codeverage_display.display.DisplayHandler; 6 | import com.intellij.ide.util.PropertiesComponent; 7 | import com.intellij.openapi.actionSystem.AnAction; 8 | import com.intellij.openapi.actionSystem.AnActionEvent; 9 | import com.intellij.openapi.actionSystem.Presentation; 10 | 11 | import javax.swing.*; 12 | import java.net.URL; 13 | 14 | 15 | /** 16 | * 17 | * This class handles the toolbar icon. 18 | * 19 | * What to to when it is clicked? 20 | * 21 | * @author Tobias Nyholm 22 | */ 23 | public class ToggleEnable extends AnAction { 24 | 25 | public void actionPerformed(AnActionEvent e) { 26 | Presentation presentation= e.getPresentation(); 27 | PluginConfiguration pc= e.getProject() 28 | .getComponent(PluginConfiguration.class); 29 | 30 | //toggle 31 | boolean enabled = ConfigValues.isEnabled(); 32 | 33 | final PropertiesComponent propertiesComponent = PropertiesComponent.getInstance(); 34 | propertiesComponent.setValue(ConfigValues.CONFIG_ENABLED, Boolean.toString(!enabled)); 35 | 36 | new ToggleIconService().toggleIcon(presentation, !enabled); 37 | pc.getDisplayHandler().updateDisplays(); 38 | } 39 | 40 | 41 | 42 | } 43 | -------------------------------------------------------------------------------- /src/cc/takacs/php_codeverage_display/toolbar/ToggleIconService.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codeverage_display.toolbar; 2 | 3 | import com.intellij.openapi.actionSystem.Presentation; 4 | 5 | import javax.swing.*; 6 | import java.net.URL; 7 | 8 | /** 9 | * @author Tobias Nyholm 10 | * 11 | * Toggle the icon 12 | */ 13 | public class ToggleIconService { 14 | 15 | /** 16 | * Toggle the icon 17 | * 18 | * @param presentation 19 | * @param enabled 20 | */ 21 | public void toggleIcon(Presentation presentation, Boolean enabled){ 22 | String location; 23 | if(enabled){ 24 | location = "/icons/toolbar-toggle-enabled-icon.png"; 25 | } 26 | else{ 27 | location = "/icons/toolbar-toggle-disabled-icon.png"; 28 | } 29 | URL url=getClass().getResource(location); 30 | presentation.setIcon(new ImageIcon(url)); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /src/icons/toolbar-toggle-disabled-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oker1/phpunit_codecoverage_display/9c287eee492de42374de9f18999a77f45ee9d0bc/src/icons/toolbar-toggle-disabled-icon.png -------------------------------------------------------------------------------- /src/icons/toolbar-toggle-enabled-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oker1/phpunit_codecoverage_display/9c287eee492de42374de9f18999a77f45ee9d0bc/src/icons/toolbar-toggle-enabled-icon.png -------------------------------------------------------------------------------- /test/cc/takacs/php_codecoverage_display/display/CoverageDisplayHelper.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codecoverage_display.display; 2 | 3 | import cc.takacs.php_codeverage_display.config.ConfigValues; 4 | import cc.takacs.php_codeverage_display.display.CoverageDisplay; 5 | import com.intellij.openapi.editor.Editor; 6 | import org.mockito.Mockito; 7 | 8 | public class CoverageDisplayHelper { 9 | public CoverageDisplayHelper() { 10 | } 11 | 12 | public CoverageDisplay createDisplay() { 13 | Editor editor = Mockito.mock(Editor.class); 14 | ConfigValues config = new ConfigValues(); 15 | return new CoverageDisplay(editor, config); 16 | } 17 | } -------------------------------------------------------------------------------- /test/cc/takacs/php_codecoverage_display/display/clover/CloverXmlReaderTest.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codecoverage_display.display.clover; 2 | 3 | import cc.takacs.php_codeverage_display.clover.CloverXmlReader; 4 | import cc.takacs.php_codeverage_display.clover.CoverageCollection; 5 | import java.util.Arrays; 6 | 7 | import cc.takacs.php_codeverage_display.clover.FileCoverage; 8 | import junit.framework.TestCase; 9 | import org.junit.Test; 10 | 11 | public class CloverXmlReaderTest { 12 | @Test 13 | public void parsePhpUnitCloverFile() { 14 | String dataTestFile = CloverXmlReaderTest.class.getClassLoader().getResource("phpunit-clover.xml").getFile(); 15 | CloverXmlReader cloverXmlReader = new CloverXmlReader(dataTestFile); 16 | 17 | CoverageCollection result = cloverXmlReader.parse(); 18 | TestCase.assertEquals(result.getKeys().size(), 3); 19 | TestCase.assertTrue(result.getKeys().containsAll(Arrays.asList( 20 | "/home/jeremy/Workspace/Filesystem/Exception/FileNotFoundException.php", 21 | "/home/jeremy/Workspace/Filesystem/Exception/IOException.php", 22 | "/home/jeremy/Workspace/Filesystem/Filesystem.php" 23 | ))); 24 | 25 | FileCoverage fileCoverage = result.get("/home/jeremy/Workspace/Filesystem/Exception/FileNotFoundException.php"); 26 | TestCase.assertEquals(fileCoverage.getKeys().size(), 3); 27 | TestCase.assertTrue(fileCoverage.getKeys().containsAll(Arrays.asList(24, 25, 26))); 28 | TestCase.assertTrue(fileCoverage.getLine(24).isExecuted()); 29 | TestCase.assertFalse(fileCoverage.getLine(25).isExecuted()); 30 | TestCase.assertTrue(fileCoverage.getLine(26).isExecuted()); 31 | 32 | fileCoverage = result.get("/home/jeremy/Workspace/Filesystem/Exception/IOException.php"); 33 | TestCase.assertEquals(fileCoverage.getKeys().size(), 4); 34 | TestCase.assertTrue(fileCoverage.getKeys().containsAll(Arrays.asList(29, 31, 32, 39))); 35 | TestCase.assertTrue(fileCoverage.getLine(29).isExecuted()); 36 | TestCase.assertFalse(fileCoverage.getLine(31).isExecuted()); 37 | TestCase.assertTrue(fileCoverage.getLine(32).isExecuted()); 38 | TestCase.assertTrue(fileCoverage.getLine(39).isExecuted()); 39 | } 40 | 41 | @Test 42 | public void parseAtoumCloverFile() { 43 | String dataTestFile = CloverXmlReaderTest.class.getClassLoader().getResource("atoum-clover.xml").getFile(); 44 | CloverXmlReader cloverXmlReader = new CloverXmlReader(dataTestFile); 45 | 46 | CoverageCollection result = cloverXmlReader.parse(); 47 | TestCase.assertEquals(result.getKeys().size(), 2); 48 | TestCase.assertTrue(result.getKeys().containsAll(Arrays.asList( 49 | "/home/jdecool/Workspace/NovawayFileManagementBundle/Manager/BaseEntityWithFileManager.php", 50 | "/home/jdecool/Workspace/NovawayFileManagementBundle/vendor/twig/twig/lib/Twig/Extension.php" 51 | ))); 52 | 53 | FileCoverage fileCoverage = result.get("/home/jdecool/Workspace/NovawayFileManagementBundle/Manager/BaseEntityWithFileManager.php"); 54 | TestCase.assertEquals(fileCoverage.getKeys().size(), 10); 55 | TestCase.assertTrue(fileCoverage.getKeys().containsAll(Arrays.asList(55, 56, 59, 60, 62, 63, 64, 65, 66, 67))); 56 | TestCase.assertTrue(fileCoverage.getLine(55).isExecuted()); 57 | TestCase.assertTrue(fileCoverage.getLine(56).isExecuted()); 58 | TestCase.assertTrue(fileCoverage.getLine(59).isExecuted()); 59 | TestCase.assertTrue(fileCoverage.getLine(60).isExecuted()); 60 | TestCase.assertTrue(fileCoverage.getLine(62).isExecuted()); 61 | TestCase.assertTrue(fileCoverage.getLine(63).isExecuted()); 62 | TestCase.assertFalse(fileCoverage.getLine(64).isExecuted()); 63 | TestCase.assertTrue(fileCoverage.getLine(65).isExecuted()); 64 | TestCase.assertTrue(fileCoverage.getLine(66).isExecuted()); 65 | TestCase.assertTrue(fileCoverage.getLine(67).isExecuted()); 66 | 67 | fileCoverage = result.get("/home/jdecool/Workspace/NovawayFileManagementBundle/vendor/twig/twig/lib/Twig/Extension.php"); 68 | TestCase.assertEquals(fileCoverage.getKeys().size(), 7); 69 | TestCase.assertTrue(fileCoverage.getKeys().containsAll(Arrays.asList(22, 31, 41, 61, 71, 81, 91))); 70 | TestCase.assertFalse(fileCoverage.getLine(22).isExecuted()); 71 | TestCase.assertFalse(fileCoverage.getLine(31).isExecuted()); 72 | TestCase.assertFalse(fileCoverage.getLine(41).isExecuted()); 73 | TestCase.assertFalse(fileCoverage.getLine(61).isExecuted()); 74 | TestCase.assertFalse(fileCoverage.getLine(71).isExecuted()); 75 | TestCase.assertFalse(fileCoverage.getLine(81).isExecuted()); 76 | TestCase.assertFalse(fileCoverage.getLine(91).isExecuted()); 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /test/cc/takacs/php_codecoverage_display/display/displaymap/CanonicalDisplayMapDecoratorTest.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codecoverage_display.display.displaymap; 2 | 3 | import cc.takacs.php_codecoverage_display.display.CoverageDisplayHelper; 4 | import cc.takacs.php_codeverage_display.display.CoverageDisplay; 5 | import cc.takacs.php_codeverage_display.displaymap.CanonicalDisplayMapDecorator; 6 | import cc.takacs.php_codeverage_display.displaymap.FilenameDisplayMap; 7 | import cc.takacs.php_codeverage_display.displaymap.SimpleFilenameDisplayMap; 8 | import junit.framework.TestCase; 9 | import org.junit.Before; 10 | import org.junit.Test; 11 | 12 | import java.io.File; 13 | import java.io.IOException; 14 | 15 | /** 16 | * @author Zsolt Takacs 17 | */ 18 | public class CanonicalDisplayMapDecoratorTest { 19 | public static final String RELATIVE_TEST_FILENAME = "testfile"; 20 | private FilenameDisplayMap filenameDisplayMap; 21 | private final CoverageDisplayHelper coverageDisplayHelper = new CoverageDisplayHelper(); 22 | 23 | @Before 24 | public void setUp() { 25 | filenameDisplayMap = new CanonicalDisplayMapDecorator(new SimpleFilenameDisplayMap()); 26 | } 27 | 28 | @Test 29 | public void canonicalPathIsResolvedInAdd() throws IOException { 30 | CoverageDisplay display = coverageDisplayHelper.createDisplay(); 31 | 32 | String resolved = calculateCanonicalPath(); 33 | 34 | filenameDisplayMap.add(RELATIVE_TEST_FILENAME, display); 35 | 36 | TestCase.assertSame(display, filenameDisplayMap.get(resolved)); 37 | } 38 | 39 | @Test 40 | public void testCanonicalPathIsResolvedInRemove() throws IOException { 41 | CoverageDisplay display = coverageDisplayHelper.createDisplay(); 42 | 43 | String resolved = calculateCanonicalPath(); 44 | 45 | filenameDisplayMap.add(resolved, display); 46 | filenameDisplayMap.remove(RELATIVE_TEST_FILENAME); 47 | 48 | TestCase.assertNull(filenameDisplayMap.get(resolved)); 49 | } 50 | 51 | private String calculateCanonicalPath() throws IOException { 52 | return new File(".").getCanonicalPath() + File.separator + RELATIVE_TEST_FILENAME; 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /test/cc/takacs/php_codecoverage_display/display/displaymap/SimpleFilenameDisplayMapTest.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codecoverage_display.display.displaymap; 2 | 3 | import cc.takacs.php_codecoverage_display.display.CoverageDisplayHelper; 4 | import cc.takacs.php_codeverage_display.display.CoverageDisplay; 5 | import cc.takacs.php_codeverage_display.displaymap.FilenameDisplayMap; 6 | import cc.takacs.php_codeverage_display.displaymap.SimpleFilenameDisplayMap; 7 | import junit.framework.TestCase; 8 | import org.junit.Before; 9 | 10 | import java.io.File; 11 | 12 | /** 13 | * @author Zsolt Takacs 14 | */ 15 | public class SimpleFilenameDisplayMapTest extends TestCase { 16 | public static final String TEST_FILENAME = File.separator + "testfile"; 17 | private final CoverageDisplayHelper coverageDisplayHelper = new CoverageDisplayHelper(); 18 | private FilenameDisplayMap filenameDisplayMap; 19 | 20 | @Before 21 | public void setUp() { 22 | filenameDisplayMap = new SimpleFilenameDisplayMap(); 23 | } 24 | 25 | public void testAddedDisplayCanBeFound() { 26 | CoverageDisplay display = coverageDisplayHelper.createDisplay(); 27 | 28 | filenameDisplayMap.add(TEST_FILENAME, display); 29 | 30 | assertSame(display, filenameDisplayMap.get(TEST_FILENAME)); 31 | } 32 | 33 | public void testRemovedDisplayIsNotReturned() { 34 | CoverageDisplay display = coverageDisplayHelper.createDisplay(); 35 | 36 | filenameDisplayMap.add(TEST_FILENAME, display); 37 | filenameDisplayMap.remove(TEST_FILENAME); 38 | 39 | assertNull(filenameDisplayMap.get(TEST_FILENAME)); 40 | } 41 | 42 | public void testNullIsReturnedForNotAddedFilename() { 43 | assertNull(filenameDisplayMap.get(TEST_FILENAME)); 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /test/cc/takacs/php_codecoverage_display/display/displaymap/UnixToWindowsDisplayMapDecoratorDirectoryMappingTest.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codecoverage_display.display.displaymap; 2 | 3 | import cc.takacs.php_codecoverage_display.display.CoverageDisplayHelper; 4 | import cc.takacs.php_codeverage_display.config.ConfigValues; 5 | import cc.takacs.php_codeverage_display.display.CoverageDisplay; 6 | import cc.takacs.php_codeverage_display.displaymap.FilenameDisplayMap; 7 | import cc.takacs.php_codeverage_display.displaymap.UnixToWindowsDisplayMapDecorator; 8 | import junit.framework.TestCase; 9 | import org.junit.Before; 10 | 11 | import static org.mockito.Mockito.mock; 12 | import static org.mockito.Mockito.verify; 13 | 14 | /** 15 | * @author Zsolt Takacs 16 | */ 17 | public class UnixToWindowsDisplayMapDecoratorDirectoryMappingTest extends TestCase { 18 | public static final String MAPPING_FROM = "C:/Projects/test"; 19 | public static final String MAPPING_TO = "/home/user/workspace"; 20 | 21 | private UnixToWindowsDisplayMapDecorator map; 22 | private FilenameDisplayMap decoratedMock; 23 | private ConfigValues config = new ConfigValues(); 24 | 25 | private final CoverageDisplayHelper coverageDisplayHelper = new CoverageDisplayHelper(); 26 | 27 | @Before 28 | public void setUp() { 29 | decoratedMock = mock(FilenameDisplayMap.class); 30 | 31 | config.mapDirectoryFrom = MAPPING_FROM; 32 | config.mapDirectoryTo = MAPPING_TO; 33 | 34 | map = new UnixToWindowsDisplayMapDecorator(decoratedMock, config); 35 | } 36 | 37 | public void testPathIsTranslatedInAdd() { 38 | CoverageDisplay display = coverageDisplayHelper.createDisplay(); 39 | 40 | map.add(MAPPING_FROM + "/folder1/file1.php", display); 41 | 42 | verify(decoratedMock).add(MAPPING_TO + "/folder1/file1.php", display); 43 | } 44 | 45 | public void testPathIsTranslatedInRemove() { 46 | map.remove(MAPPING_FROM + "/folder1/file1.php"); 47 | 48 | verify(decoratedMock).remove(MAPPING_TO + "/folder1/file1.php"); 49 | } 50 | 51 | public void testPathIsNotTranslatedInGet() { 52 | String filename = MAPPING_FROM + "\\folder1\\file1.php"; 53 | 54 | map.get(filename); 55 | 56 | verify(decoratedMock).get(filename); 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /test/cc/takacs/php_codecoverage_display/display/displaymap/UnixToWindowsDisplayMapDecoratorTest.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codecoverage_display.display.displaymap; 2 | 3 | import cc.takacs.php_codecoverage_display.display.CoverageDisplayHelper; 4 | import cc.takacs.php_codeverage_display.config.ConfigValues; 5 | import cc.takacs.php_codeverage_display.display.CoverageDisplay; 6 | import cc.takacs.php_codeverage_display.displaymap.FilenameDisplayMap; 7 | import cc.takacs.php_codeverage_display.displaymap.UnixToWindowsDisplayMapDecorator; 8 | import junit.framework.TestCase; 9 | import org.junit.Before; 10 | 11 | import static org.mockito.Mockito.mock; 12 | import static org.mockito.Mockito.verify; 13 | import static org.mockito.Mockito.when; 14 | 15 | /** 16 | * @author Zsolt Takacs 17 | */ 18 | public class UnixToWindowsDisplayMapDecoratorTest extends TestCase { 19 | public static final String WINDOWS_PATH = "\\folder1\\folder2\\file.php"; 20 | public static final String UNIX_PATH = "/folder1/folder2/file.php"; 21 | 22 | private UnixToWindowsDisplayMapDecorator map; 23 | private FilenameDisplayMap decoratedMock; 24 | private final CoverageDisplayHelper coverageDisplayHelper = new CoverageDisplayHelper(); 25 | 26 | @Before 27 | public void setUp() { 28 | decoratedMock = mock(FilenameDisplayMap.class); 29 | ConfigValues config = new ConfigValues(); 30 | 31 | map = new UnixToWindowsDisplayMapDecorator(decoratedMock, config); 32 | } 33 | 34 | public void testPathSeparatorIsNotReplacedInGet() { 35 | map.get(WINDOWS_PATH); 36 | 37 | verify(decoratedMock).get(WINDOWS_PATH); 38 | } 39 | 40 | public void testGetDelegates() { 41 | CoverageDisplay display = coverageDisplayHelper.createDisplay(); 42 | 43 | when(decoratedMock.get(WINDOWS_PATH)).thenReturn(display); 44 | 45 | assertSame(display, map.get(WINDOWS_PATH)); 46 | } 47 | 48 | public void testAddDelegates() { 49 | CoverageDisplay display = coverageDisplayHelper.createDisplay(); 50 | 51 | map.add(UNIX_PATH, display); 52 | 53 | verify(decoratedMock).add(UNIX_PATH, display); 54 | } 55 | 56 | public void testRemoveDelegates() { 57 | map.remove(UNIX_PATH); 58 | 59 | verify(decoratedMock).remove(UNIX_PATH); 60 | } 61 | 62 | public void testDoesntMapWithEmtpyMappingConfig() { 63 | CoverageDisplay display = coverageDisplayHelper.createDisplay(); 64 | 65 | map.add(UNIX_PATH, display); 66 | 67 | verify(decoratedMock).add(UNIX_PATH, display); 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /test/cc/takacs/php_codecoverage_display/display/displaymap/WindowsDisplayMapDecoratorTest.java: -------------------------------------------------------------------------------- 1 | package cc.takacs.php_codecoverage_display.display.displaymap; 2 | 3 | import cc.takacs.php_codecoverage_display.display.CoverageDisplayHelper; 4 | import cc.takacs.php_codeverage_display.display.CoverageDisplay; 5 | import cc.takacs.php_codeverage_display.displaymap.FilenameDisplayMap; 6 | import cc.takacs.php_codeverage_display.displaymap.SimpleFilenameDisplayMap; 7 | import cc.takacs.php_codeverage_display.displaymap.WindowsDisplayMapDecorator; 8 | import org.junit.Before; 9 | import org.junit.Test; 10 | 11 | import static junit.framework.Assert.assertSame; 12 | 13 | /** 14 | * @author Zsolt Takacs 15 | */ 16 | public class WindowsDisplayMapDecoratorTest 17 | { 18 | private FilenameDisplayMap object; 19 | 20 | private final CoverageDisplayHelper coverageDisplayHelper = new CoverageDisplayHelper(); 21 | 22 | @Before 23 | public void setUp() 24 | { 25 | object = new WindowsDisplayMapDecorator(new SimpleFilenameDisplayMap()); 26 | } 27 | 28 | @Test 29 | public void removesSlashPrefix() 30 | { 31 | CoverageDisplay display = coverageDisplayHelper.createDisplay(); 32 | object.add("E:/Folder/Test.php", display); 33 | 34 | CoverageDisplay actual = object.get("/E:/Folder/Test.php"); 35 | 36 | assertSame(display, actual); 37 | } 38 | 39 | @Test 40 | public void convertsBackslashesToSlashes() 41 | { 42 | CoverageDisplay display = coverageDisplayHelper.createDisplay(); 43 | object.add("E:/Folder/Test.php", display); 44 | 45 | CoverageDisplay actual = object.get("E:\\Folder\\Test.php"); 46 | 47 | assertSame(display, actual); 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /test/resources/atoum-clover.xml: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /test/resources/phpunit-clover.xml: -------------------------------------------------------------------------------- 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 | --------------------------------------------------------------------------------