├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── encodings.xml ├── jarRepositories.xml ├── libraries │ └── org_testng_testng_7_7_0.xml ├── misc.xml ├── uiDesigner.xml └── vcs.xml ├── LICENSE ├── Playwright-APIAutomation.iml ├── pom.xml ├── src ├── main │ └── java │ │ └── com │ │ └── api │ │ └── data │ │ ├── User.java │ │ └── Users.java └── test │ ├── data │ └── user.json │ └── java │ └── com │ └── qa │ └── api │ └── tests │ ├── DELETE │ └── DeleteUserAPITest.java │ ├── GET │ ├── APIDisposeTest.java │ ├── APIResponseHeadersTest.java │ └── GETAPICall.java │ ├── POST │ ├── CreateUserPostCallTest.java │ ├── CreateUserPostCallWithPOJOTest.java │ ├── CreateUserPotCallWithPojoLombokTest.java │ ├── CreateUserTestWithJsonStringTest.java │ └── CreateUserWithJsonFileTest.java │ └── PUT │ └── UpdateUserPUTCallWithPOJOLombokTest.java └── target ├── maven-status └── maven-compiler-plugin │ ├── compile │ └── default-compile │ │ └── inputFiles.lst │ └── testCompile │ └── default-testCompile │ ├── createdFiles.lst │ └── inputFiles.lst └── surefire-reports ├── Surefire suite ├── Surefire test.html ├── Surefire test.xml └── testng-failed.xml ├── TEST-TestSuite.xml ├── TestSuite.txt ├── bullet_point.png ├── collapseall.gif ├── emailable-report.html ├── failed.png ├── index.html ├── jquery-1.7.1.min.js ├── junitreports ├── TEST-com.qa.api.tests.APIDisposeTest.xml ├── TEST-com.qa.api.tests.APIResponseHeadersTest.xml ├── TEST-com.qa.api.tests.CreateUserPostCallTest.xml ├── TEST-com.qa.api.tests.CreateUserTestWithJsonStringTest.xml ├── TEST-com.qa.api.tests.CreateUserWithJsonFileTest.xml └── TEST-com.qa.api.tests.CreateUserWithPOJOTest.xml ├── navigator-bullet.png ├── old ├── Surefire suite │ ├── Surefire test.properties │ ├── classes.html │ ├── groups.html │ ├── index.html │ ├── main.html │ ├── methods-alphabetical.html │ ├── methods-not-run.html │ ├── methods.html │ ├── reporter-output.html │ ├── testng.xml.html │ └── toc.html └── index.html ├── passed.png ├── skipped.png ├── testng-failed.xml ├── testng-reports.css ├── testng-reports.js ├── testng-results.xml └── testng.css /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled class file 2 | *.class 3 | 4 | # Log file 5 | *.log 6 | 7 | # BlueJ files 8 | *.ctxt 9 | 10 | # Mobile Tools for Java (J2ME) 11 | .mtj.tmp/ 12 | 13 | # Package Files # 14 | *.jar 15 | *.war 16 | *.nar 17 | *.ear 18 | *.zip 19 | *.tar.gz 20 | *.rar 21 | 22 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 23 | hs_err_pid* 24 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 14 | 15 | 19 | 20 | -------------------------------------------------------------------------------- /.idea/libraries/org_testng_testng_7_7_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /.idea/uiDesigner.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 | 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 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Playwright-APIAutomation.iml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 4.0.0 6 | 7 | org.example 8 | Playwright-APIAutomation 9 | 1.0-SNAPSHOT 10 | 11 | Playwright-APIAutomation 12 | 13 | http://www.example.com 14 | 15 | 16 | UTF-8 17 | 1.7 18 | 1.7 19 | 20 | 21 | 22 | 23 | com.microsoft.playwright 24 | playwright 25 | 1.32.0 26 | 27 | 28 | 29 | org.testng 30 | testng 31 | 7.0.0 32 | 33 | 34 | 35 | com.fasterxml.jackson.core 36 | jackson-databind 37 | 2.14.2 38 | 39 | 40 | 41 | org.projectlombok 42 | lombok 43 | 1.18.26 44 | 45 | 46 | 47 | org.hamcrest 48 | hamcrest-library 49 | 2.2 50 | test 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | maven-clean-plugin 63 | 3.1.0 64 | 65 | 66 | 67 | maven-resources-plugin 68 | 3.0.2 69 | 70 | 71 | maven-compiler-plugin 72 | 3.8.0 73 | 74 | 75 | maven-surefire-plugin 76 | 2.22.1 77 | 78 | 79 | maven-jar-plugin 80 | 3.0.2 81 | 82 | 83 | maven-install-plugin 84 | 2.5.2 85 | 86 | 87 | maven-deploy-plugin 88 | 2.8.2 89 | 90 | 91 | 92 | maven-site-plugin 93 | 3.7.1 94 | 95 | 96 | maven-project-info-reports-plugin 97 | 3.0.0 98 | 99 | 100 | 101 | 102 | 103 | org.apache.maven.plugins 104 | maven-compiler-plugin 105 | 106 | 8 107 | 8 108 | 109 | 110 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/api/data/User.java: -------------------------------------------------------------------------------- 1 | package com.api.data; 2 | 3 | public class User { 4 | 5 | private String id; 6 | private String name; 7 | private String email; 8 | private String gender; 9 | private String status; 10 | 11 | public User(){ } 12 | 13 | public User(String name, String email, String gender, String status) { 14 | this.name = name; 15 | this.email = email; 16 | this.gender = gender; 17 | this.status = status; 18 | } 19 | 20 | public String getId() { 21 | return id; 22 | } 23 | 24 | public void setId(String id) { 25 | this.id = id; 26 | } 27 | 28 | public String getName() { 29 | return name; 30 | } 31 | 32 | public void setName(String name) { 33 | this.name = name; 34 | } 35 | 36 | public String getEmail() { 37 | return email; 38 | } 39 | 40 | public void setEmail(String email) { 41 | this.email = email; 42 | } 43 | 44 | public String getGender() { 45 | return gender; 46 | } 47 | 48 | public void setGender(String gender) { 49 | this.gender = gender; 50 | } 51 | 52 | public String getStatus() { 53 | return status; 54 | } 55 | 56 | public void setStatus(String status) { 57 | this.status = status; 58 | } 59 | 60 | 61 | @Override 62 | public String toString() { 63 | return "User{" + 64 | "id='" + id + '\'' + 65 | ", name='" + name + '\'' + 66 | ", email='" + email + '\'' + 67 | ", gender='" + gender + '\'' + 68 | ", status='" + status + '\'' + 69 | '}'; 70 | } 71 | } -------------------------------------------------------------------------------- /src/main/java/com/api/data/Users.java: -------------------------------------------------------------------------------- 1 | package com.api.data; 2 | 3 | import lombok.*; 4 | 5 | @NoArgsConstructor 6 | @AllArgsConstructor 7 | @Data 8 | @Builder 9 | @EqualsAndHashCode 10 | public class Users { 11 | private String id; 12 | private String name; 13 | private String email; 14 | private String gender; 15 | private String status; 16 | } 17 | -------------------------------------------------------------------------------- /src/test/data/user.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "naveentesting", 3 | "email" : "naveentesing@gmail.com", 4 | "gender" : "male", 5 | "status" : "active" 6 | } -------------------------------------------------------------------------------- /src/test/java/com/qa/api/tests/DELETE/DeleteUserAPITest.java: -------------------------------------------------------------------------------- 1 | package com.qa.api.tests.DELETE; 2 | 3 | import com.api.data.User; 4 | import com.api.data.Users; 5 | import com.fasterxml.jackson.databind.ObjectMapper; 6 | import com.microsoft.playwright.APIRequest; 7 | import com.microsoft.playwright.APIRequestContext; 8 | import com.microsoft.playwright.APIResponse; 9 | import com.microsoft.playwright.Playwright; 10 | import com.microsoft.playwright.options.RequestOptions; 11 | import org.testng.Assert; 12 | import org.testng.annotations.AfterTest; 13 | import org.testng.annotations.BeforeTest; 14 | import org.testng.annotations.Test; 15 | 16 | import java.io.IOException; 17 | 18 | public class DeleteUserAPITest { 19 | //1. create a user -- user id -- 201 20 | //2. delete user -- user id -- 204 21 | //3. get user -- user id -- 404 22 | 23 | Playwright playwright; 24 | APIRequest request; 25 | APIRequestContext requestContext; 26 | 27 | static String emailId; 28 | 29 | @BeforeTest 30 | public void setup(){ 31 | playwright = Playwright.create(); 32 | request = playwright.request(); 33 | requestContext = request.newContext(); 34 | } 35 | 36 | @AfterTest 37 | public void tearDown(){ 38 | playwright.close(); 39 | } 40 | 41 | 42 | public static String getRandomEmail(){ 43 | emailId = "testpwautomation"+ System.currentTimeMillis() + "@gmail.com"; 44 | return emailId; 45 | } 46 | 47 | 48 | @Test 49 | public void deleteUserTest() throws IOException { 50 | 51 | //1. create users object: using builder pattern: 52 | Users users = Users.builder() 53 | .name("Naveen Automation") 54 | .email(getRandomEmail()) 55 | .gender("male") 56 | .status("active").build(); 57 | 58 | //POST Call: create a user 59 | APIResponse apiPostResponse = requestContext.post("https://gorest.co.in/public/v2/users", 60 | RequestOptions.create() 61 | .setHeader("Content-Type", "application/json") 62 | .setHeader("Authorization", "Bearer e4b8e1f593dc4a731a153c5ec8cc9b8bbb583ae964ce650a741113091b4e2ac6") 63 | .setData(users)); 64 | 65 | System.out.println(apiPostResponse.url()); 66 | System.out.println(apiPostResponse.status()); 67 | Assert.assertEquals(apiPostResponse.status(), 201); 68 | 69 | String responseText = apiPostResponse.text(); 70 | System.out.println(responseText); 71 | 72 | //convert response text/json to POJO -- desrialization 73 | ObjectMapper objectMapper = new ObjectMapper(); 74 | User actUser = objectMapper.readValue(responseText, User.class); 75 | System.out.println("actual user from the response---->"); 76 | System.out.println(actUser); 77 | 78 | Assert.assertNotNull(actUser.getId()); 79 | 80 | String userId = actUser.getId(); 81 | System.out.println("new user id is : " + userId); 82 | 83 | //2. delete user -- user id -- 204 84 | 85 | APIResponse apiDELETEResponse = requestContext.delete("https://gorest.co.in/public/v2/users/"+userId, 86 | RequestOptions.create() 87 | .setHeader("Authorization", "Bearer e4b8e1f593dc4a731a153c5ec8cc9b8bbb583ae964ce650a741113091b4e2ac6") 88 | ); 89 | 90 | System.out.println(apiDELETEResponse.status()); 91 | System.out.println(apiDELETEResponse.statusText()); 92 | 93 | Assert.assertEquals(apiDELETEResponse.status(), 204); 94 | 95 | System.out.println("delete user response body ====" + apiDELETEResponse.text()); 96 | 97 | //3. get user -- user id -- 404 98 | APIResponse apiResponse = requestContext.get("https://gorest.co.in/public/v2/users/" + userId, 99 | RequestOptions.create() 100 | .setHeader("Authorization", "Bearer e4b8e1f593dc4a731a153c5ec8cc9b8bbb583ae964ce650a741113091b4e2ac6") 101 | ); 102 | 103 | System.out.println(apiResponse.text()); 104 | 105 | int statusCode = apiResponse.status(); 106 | System.out.println("response status code: " + statusCode); 107 | Assert.assertEquals(statusCode, 404); 108 | Assert.assertEquals(apiResponse.statusText(), "Not Found"); 109 | 110 | Assert.assertTrue(apiResponse.text().contains("Resource not found")); 111 | 112 | } 113 | 114 | 115 | } 116 | -------------------------------------------------------------------------------- /src/test/java/com/qa/api/tests/GET/APIDisposeTest.java: -------------------------------------------------------------------------------- 1 | package com.qa.api.tests.GET; 2 | 3 | import com.microsoft.playwright.*; 4 | import org.testng.Assert; 5 | import org.testng.annotations.AfterTest; 6 | import org.testng.annotations.BeforeTest; 7 | import org.testng.annotations.Test; 8 | 9 | public class APIDisposeTest { 10 | 11 | Playwright playwright; 12 | APIRequest request; 13 | APIRequestContext requestContext; 14 | 15 | @BeforeTest 16 | public void setup(){ 17 | playwright = Playwright.create(); 18 | request = playwright.request(); 19 | requestContext = request.newContext(); 20 | } 21 | 22 | 23 | @Test 24 | public void disposeResponseTest(){ 25 | 26 | //Request-1: 27 | APIResponse apiResponse = requestContext.get("https://gorest.co.in/public/v2/users"); 28 | int statusCode = apiResponse.status(); 29 | System.out.println("response status code: " + statusCode); 30 | Assert.assertEquals(statusCode, 200); 31 | Assert.assertEquals(apiResponse.ok(), true); 32 | String statusResText = apiResponse.statusText(); 33 | System.out.println(statusResText); 34 | 35 | System.out.println("----print api response with plain text----"); 36 | System.out.println(apiResponse.text()); 37 | 38 | apiResponse.dispose();//will dispose only response body but status code, url, status text will remain same 39 | System.out.println("----print api response after dispose with plain text----"); 40 | 41 | try { 42 | System.out.println(apiResponse.text()); 43 | } 44 | catch(PlaywrightException e ){ 45 | System.out.println("api response body is disposed"); 46 | } 47 | 48 | 49 | int statusCode1 = apiResponse.status(); 50 | System.out.println("response status code after dispose: " + statusCode1); 51 | 52 | String statusResText1 = apiResponse.statusText(); 53 | System.out.println(statusResText1); 54 | 55 | System.out.println("response url:" + apiResponse.url()); 56 | 57 | //Request -2 : 58 | APIResponse apiResponse1 = requestContext.get("https://reqres.in/api/users/2"); 59 | System.out.println("get response body for 2nd request:"); 60 | System.out.println("status code:" + apiResponse1.status()); 61 | System.out.println("repose body:" + apiResponse1.text()); 62 | 63 | 64 | //request context dispose: 65 | requestContext.dispose(); 66 | //System.out.println("response2 body:" + apiResponse.text()); 67 | System.out.println("response2 body:" + apiResponse1.text()); 68 | 69 | 70 | } 71 | 72 | 73 | @AfterTest 74 | public void tearDown(){ 75 | playwright.close(); 76 | } 77 | 78 | 79 | 80 | } 81 | -------------------------------------------------------------------------------- /src/test/java/com/qa/api/tests/GET/APIResponseHeadersTest.java: -------------------------------------------------------------------------------- 1 | package com.qa.api.tests.GET; 2 | 3 | import com.microsoft.playwright.APIRequest; 4 | import com.microsoft.playwright.APIRequestContext; 5 | import com.microsoft.playwright.APIResponse; 6 | import com.microsoft.playwright.Playwright; 7 | import com.microsoft.playwright.options.HttpHeader; 8 | import org.testng.Assert; 9 | import org.testng.annotations.AfterTest; 10 | import org.testng.annotations.BeforeTest; 11 | import org.testng.annotations.Test; 12 | 13 | import java.util.List; 14 | import java.util.Map; 15 | 16 | public class APIResponseHeadersTest { 17 | 18 | Playwright playwright; 19 | APIRequest request; 20 | APIRequestContext requestContext; 21 | 22 | @BeforeTest 23 | public void setup(){ 24 | playwright = Playwright.create(); 25 | request = playwright.request(); 26 | requestContext = request.newContext(); 27 | } 28 | @AfterTest 29 | public void tearDown(){ 30 | playwright.close(); 31 | } 32 | 33 | @Test 34 | public void getHeadersTest(){ 35 | APIResponse apiResponse = requestContext.get("https://gorest.co.in/public/v2/users"); 36 | int statusCode = apiResponse.status(); 37 | System.out.println("response status code: " + statusCode); 38 | Assert.assertEquals(statusCode, 200); 39 | 40 | //using map: 41 | Map headersMap = apiResponse.headers(); 42 | headersMap.forEach((k,v) -> System.out.println(k + ":" + v)); 43 | System.out.println("total response headers: " + headersMap.size()); 44 | Assert.assertEquals(headersMap.get("server"), "cloudflare"); 45 | Assert.assertEquals(headersMap.get("content-type"), "application/json; charset=utf-8"); 46 | 47 | System.out.println("==============================="); 48 | 49 | //using list: 50 | List headersList = apiResponse.headersArray(); 51 | for(HttpHeader e : headersList){ 52 | System.out.println(e.name + " : " + e.value); 53 | } 54 | } 55 | 56 | } 57 | -------------------------------------------------------------------------------- /src/test/java/com/qa/api/tests/GET/GETAPICall.java: -------------------------------------------------------------------------------- 1 | package com.qa.api.tests.GET; 2 | 3 | import com.fasterxml.jackson.databind.JsonNode; 4 | import com.fasterxml.jackson.databind.ObjectMapper; 5 | import com.microsoft.playwright.APIRequest; 6 | import com.microsoft.playwright.APIRequestContext; 7 | import com.microsoft.playwright.APIResponse; 8 | import com.microsoft.playwright.Playwright; 9 | import com.microsoft.playwright.options.RequestOptions; 10 | import org.testng.Assert; 11 | import org.testng.annotations.AfterTest; 12 | import org.testng.annotations.BeforeTest; 13 | import org.testng.annotations.Test; 14 | 15 | import java.io.IOException; 16 | import java.util.Map; 17 | 18 | public class GETAPICall { 19 | Playwright playwright; 20 | APIRequest request; 21 | APIRequestContext requestContext; 22 | 23 | @BeforeTest 24 | public void setup(){ 25 | playwright = Playwright.create(); 26 | request = playwright.request(); 27 | requestContext = request.newContext(); 28 | } 29 | 30 | @Test 31 | public void getSpecificUserApiTest() throws IOException { 32 | APIResponse apiResponse = requestContext.get("https://gorest.co.in/public/v2/users",RequestOptions.create() 33 | .setQueryParam("gender", "male") 34 | .setQueryParam("status", "active")); 35 | int statusCode = apiResponse.status(); 36 | System.out.println("response status code: " + statusCode); 37 | Assert.assertEquals(statusCode, 200); 38 | Assert.assertEquals(apiResponse.ok(), true); 39 | 40 | String statusResText = apiResponse.statusText(); 41 | System.out.println(statusResText); 42 | 43 | System.out.println("----print api response with plain text----"); 44 | System.out.println(apiResponse.text()); 45 | 46 | System.out.println("----print api json response----"); 47 | ObjectMapper objectMapper = new ObjectMapper(); 48 | JsonNode jsonResponse = objectMapper.readTree(apiResponse.body()); 49 | String jsonPrettyRespose = jsonResponse.toPrettyString(); 50 | System.out.println(jsonPrettyRespose); 51 | 52 | } 53 | 54 | @Test 55 | public void getUsersApiTest() throws IOException { 56 | APIResponse apiResponse = requestContext.get("https://gorest.co.in/public/v2/users"); 57 | int statusCode = apiResponse.status(); 58 | System.out.println("response status code: " + statusCode); 59 | Assert.assertEquals(statusCode, 200); 60 | Assert.assertEquals(apiResponse.ok(), true); 61 | String statusResText = apiResponse.statusText(); 62 | System.out.println(statusResText); 63 | 64 | System.out.println("----print api response with plain text----"); 65 | System.out.println(apiResponse.text()); 66 | 67 | System.out.println("----print api json response----"); 68 | ObjectMapper objectMapper = new ObjectMapper(); 69 | JsonNode jsonResponse = objectMapper.readTree(apiResponse.body()); 70 | String jsonPrettyRespose = jsonResponse.toPrettyString(); 71 | System.out.println(jsonPrettyRespose); 72 | 73 | System.out.println("----print api url----"); 74 | System.out.println(apiResponse.url()); 75 | 76 | System.out.println("----print response headers----"); 77 | Map headersMap = apiResponse.headers(); 78 | System.out.println(headersMap); 79 | Assert.assertEquals(headersMap.get("content-type"), "application/json; charset=utf-8"); 80 | Assert.assertEquals(headersMap.get("x-download-options"), "noopen"); 81 | 82 | } 83 | 84 | @AfterTest 85 | public void tearDown(){ 86 | playwright.close(); 87 | } 88 | 89 | } 90 | -------------------------------------------------------------------------------- /src/test/java/com/qa/api/tests/POST/CreateUserPostCallTest.java: -------------------------------------------------------------------------------- 1 | package com.qa.api.tests.POST; 2 | 3 | import com.fasterxml.jackson.databind.JsonNode; 4 | import com.fasterxml.jackson.databind.ObjectMapper; 5 | import com.microsoft.playwright.APIRequest; 6 | import com.microsoft.playwright.APIRequestContext; 7 | import com.microsoft.playwright.APIResponse; 8 | import com.microsoft.playwright.Playwright; 9 | import com.microsoft.playwright.options.RequestOptions; 10 | import org.testng.Assert; 11 | import org.testng.annotations.AfterTest; 12 | import org.testng.annotations.BeforeTest; 13 | import org.testng.annotations.Test; 14 | 15 | import java.io.IOException; 16 | import java.util.HashMap; 17 | import java.util.Map; 18 | import java.util.Random; 19 | import java.util.UUID; 20 | 21 | public class CreateUserPostCallTest { 22 | 23 | Playwright playwright; 24 | APIRequest request; 25 | APIRequestContext requestContext; 26 | 27 | static String emailId; 28 | 29 | @BeforeTest 30 | public void setup(){ 31 | playwright = Playwright.create(); 32 | request = playwright.request(); 33 | requestContext = request.newContext(); 34 | } 35 | 36 | @AfterTest 37 | public void tearDown(){ 38 | playwright.close(); 39 | } 40 | 41 | 42 | public static String getRandomEmail(){ 43 | emailId = "testpwautomation"+ System.currentTimeMillis() + "@gmail.com"; 44 | return emailId; 45 | } 46 | 47 | 48 | @Test 49 | public void createUserTest() throws IOException { 50 | 51 | Map data = new HashMap(); 52 | data.put("name", "NaveenAuto"); 53 | data.put("email", getRandomEmail()); 54 | data.put("gender", "male"); 55 | data.put("status", "active"); 56 | 57 | 58 | //POST Call: create a user 59 | APIResponse apiPostResponse = requestContext.post("https://gorest.co.in/public/v2/users", 60 | RequestOptions.create() 61 | .setHeader("Content-Type", "application/json") 62 | .setHeader("Authorization", 63 | "Bearer f4bd5cb99e27882658a2233c4ddd1e8a14f49788f92938580971a46439aa774f") 64 | .setData(data) 65 | ); 66 | 67 | System.out.println(apiPostResponse.status()); 68 | Assert.assertEquals(apiPostResponse.status(), 201); 69 | Assert.assertEquals(apiPostResponse.statusText(), "Created"); 70 | 71 | System.out.println(apiPostResponse.text()); 72 | 73 | ObjectMapper objectMapper = new ObjectMapper(); 74 | JsonNode postJsonResponse = objectMapper.readTree(apiPostResponse.body()); 75 | System.out.println(postJsonResponse.toPrettyString()); 76 | 77 | //capture id from the post json response: 78 | String userId = postJsonResponse.get("id").asText(); 79 | System.out.println("user id : " + userId); 80 | 81 | //GET Call: Fetch the same user by id: 82 | 83 | System.out.println("===============get call response============"); 84 | 85 | APIResponse apiGetResponse = 86 | requestContext.get("https://gorest.co.in/public/v2/users/"+ userId, 87 | RequestOptions.create() 88 | .setHeader("Authorization", "Bearer f4bd5cb99e27882658a2233c4ddd1e8a14f49788f92938580971a46439aa774f")); 89 | 90 | Assert.assertEquals(apiGetResponse.status(), 200); 91 | Assert.assertEquals(apiGetResponse.statusText(), "OK"); 92 | System.out.println(apiGetResponse.text()); 93 | Assert.assertTrue(apiGetResponse.text().contains(userId)); 94 | Assert.assertTrue(apiGetResponse.text().contains("NaveenAuto")); 95 | 96 | Assert.assertTrue(apiGetResponse.text().contains(emailId)); 97 | } 98 | 99 | 100 | 101 | 102 | 103 | } 104 | -------------------------------------------------------------------------------- /src/test/java/com/qa/api/tests/POST/CreateUserPostCallWithPOJOTest.java: -------------------------------------------------------------------------------- 1 | package com.qa.api.tests.POST; 2 | 3 | import com.api.data.User; 4 | import com.fasterxml.jackson.databind.JsonNode; 5 | import com.fasterxml.jackson.databind.ObjectMapper; 6 | import com.microsoft.playwright.APIRequest; 7 | import com.microsoft.playwright.APIRequestContext; 8 | import com.microsoft.playwright.APIResponse; 9 | import com.microsoft.playwright.Playwright; 10 | import com.microsoft.playwright.options.RequestOptions; 11 | import org.testng.Assert; 12 | import org.testng.annotations.AfterTest; 13 | import org.testng.annotations.BeforeTest; 14 | import org.testng.annotations.Test; 15 | 16 | import java.io.IOException; 17 | 18 | public class CreateUserPostCallWithPOJOTest { 19 | 20 | Playwright playwright; 21 | APIRequest request; 22 | APIRequestContext requestContext; 23 | 24 | static String emailId; 25 | 26 | @BeforeTest 27 | public void setup(){ 28 | playwright = Playwright.create(); 29 | request = playwright.request(); 30 | requestContext = request.newContext(); 31 | } 32 | 33 | @AfterTest 34 | public void tearDown(){ 35 | playwright.close(); 36 | } 37 | 38 | 39 | public static String getRandomEmail(){ 40 | emailId = "testpwautomation"+ System.currentTimeMillis() + "@gmail.com"; 41 | return emailId; 42 | } 43 | 44 | 45 | @Test 46 | public void createUserTest() throws IOException { 47 | 48 | //create user object: 49 | User user = new User("Naveen", getRandomEmail(), "male", "active"); 50 | 51 | //POST Call: create a user 52 | APIResponse apiPostResponse = requestContext.post("https://gorest.co.in/public/v2/users", 53 | RequestOptions.create() 54 | .setHeader("Content-Type", "application/json") 55 | .setHeader("Authorization", "Bearer f4bd5cb99e27882658a2233c4ddd1e8a14f49788f92938580971a46439aa774f") 56 | .setData(user)); 57 | 58 | System.out.println(apiPostResponse.status()); 59 | Assert.assertEquals(apiPostResponse.status(), 201); 60 | Assert.assertEquals(apiPostResponse.statusText(), "Created"); 61 | 62 | String responseText = apiPostResponse.text(); 63 | System.out.println(responseText); 64 | 65 | //convert response text/json to POJO -- desrialization 66 | ObjectMapper objectMapper = new ObjectMapper(); 67 | User actUser = objectMapper.readValue(responseText, User.class); 68 | System.out.println("actual user from the response---->"); 69 | System.out.println(actUser); 70 | 71 | 72 | 73 | Assert.assertEquals(actUser.getName(), user.getName()); 74 | Assert.assertEquals(actUser.getEmail(), user.getEmail()); 75 | Assert.assertEquals(actUser.getStatus(), user.getStatus()); 76 | Assert.assertEquals(actUser.getGender(), user.getGender()); 77 | Assert.assertNotNull(actUser.getId()); 78 | 79 | } 80 | 81 | 82 | } 83 | -------------------------------------------------------------------------------- /src/test/java/com/qa/api/tests/POST/CreateUserPotCallWithPojoLombokTest.java: -------------------------------------------------------------------------------- 1 | package com.qa.api.tests.POST; 2 | 3 | import com.api.data.User; 4 | import com.api.data.Users; 5 | import com.fasterxml.jackson.databind.ObjectMapper; 6 | import com.microsoft.playwright.APIRequest; 7 | import com.microsoft.playwright.APIRequestContext; 8 | import com.microsoft.playwright.APIResponse; 9 | import com.microsoft.playwright.Playwright; 10 | import com.microsoft.playwright.options.RequestOptions; 11 | import org.testng.Assert; 12 | import org.testng.annotations.AfterTest; 13 | import org.testng.annotations.BeforeTest; 14 | import org.testng.annotations.Test; 15 | 16 | import java.io.IOException; 17 | 18 | public class CreateUserPotCallWithPojoLombokTest { 19 | 20 | Playwright playwright; 21 | APIRequest request; 22 | APIRequestContext requestContext; 23 | 24 | static String emailId; 25 | 26 | @BeforeTest 27 | public void setup(){ 28 | playwright = Playwright.create(); 29 | request = playwright.request(); 30 | requestContext = request.newContext(); 31 | } 32 | 33 | @AfterTest 34 | public void tearDown(){ 35 | playwright.close(); 36 | } 37 | 38 | 39 | public static String getRandomEmail(){ 40 | emailId = "testpwautomation"+ System.currentTimeMillis() + "@gmail.com"; 41 | return emailId; 42 | } 43 | 44 | 45 | @Test 46 | public void createUserTest() throws IOException { 47 | 48 | //create users object: using builder pattern: 49 | Users users = Users.builder() 50 | .name("Naveen Automation") 51 | .email(getRandomEmail()) 52 | .gender("male") 53 | .status("active").build(); 54 | 55 | //POST Call: create a user 56 | APIResponse apiPostResponse = requestContext.post("https://gorest.co.in/public/v2/users", 57 | RequestOptions.create() 58 | .setHeader("Content-Type", "application/json") 59 | .setHeader("Authorization", "Bearer e4b8e1f593dc4a731a153c5ec8cc9b8bbb583ae964ce650a741113091b4e2ac6") 60 | .setData(users)); 61 | 62 | System.out.println(apiPostResponse.url()); 63 | System.out.println(apiPostResponse.status()); 64 | Assert.assertEquals(apiPostResponse.status(), 201); 65 | Assert.assertEquals(apiPostResponse.statusText(), "Created"); 66 | 67 | String responseText = apiPostResponse.text(); 68 | System.out.println(responseText); 69 | 70 | //convert response text/json to POJO -- desrialization 71 | ObjectMapper objectMapper = new ObjectMapper(); 72 | User actUser = objectMapper.readValue(responseText, User.class); 73 | System.out.println("actual user from the response---->"); 74 | System.out.println(actUser); 75 | 76 | 77 | 78 | Assert.assertEquals(actUser.getName(), users.getName()); 79 | Assert.assertEquals(actUser.getEmail(), users.getEmail()); 80 | Assert.assertEquals(actUser.getStatus(), users.getStatus()); 81 | Assert.assertEquals(actUser.getGender(), users.getGender()); 82 | Assert.assertNotNull(actUser.getId()); 83 | 84 | } 85 | 86 | 87 | 88 | 89 | 90 | } 91 | -------------------------------------------------------------------------------- /src/test/java/com/qa/api/tests/POST/CreateUserTestWithJsonStringTest.java: -------------------------------------------------------------------------------- 1 | package com.qa.api.tests.POST; 2 | 3 | import com.fasterxml.jackson.databind.JsonNode; 4 | import com.fasterxml.jackson.databind.ObjectMapper; 5 | import com.microsoft.playwright.APIRequest; 6 | import com.microsoft.playwright.APIRequestContext; 7 | import com.microsoft.playwright.APIResponse; 8 | import com.microsoft.playwright.Playwright; 9 | import com.microsoft.playwright.options.RequestOptions; 10 | import org.testng.Assert; 11 | import org.testng.annotations.AfterTest; 12 | import org.testng.annotations.BeforeTest; 13 | import org.testng.annotations.Test; 14 | 15 | import java.io.IOException; 16 | import java.util.HashMap; 17 | import java.util.Map; 18 | 19 | public class CreateUserTestWithJsonStringTest { 20 | 21 | 22 | Playwright playwright; 23 | APIRequest request; 24 | APIRequestContext requestContext; 25 | 26 | static String emailId; 27 | 28 | @BeforeTest 29 | public void setup(){ 30 | playwright = Playwright.create(); 31 | request = playwright.request(); 32 | requestContext = request.newContext(); 33 | } 34 | 35 | @AfterTest 36 | public void tearDown(){ 37 | playwright.close(); 38 | } 39 | 40 | 41 | public static String getRandomEmail(){ 42 | emailId = "testpwautomation"+ System.currentTimeMillis() + "@gmail.com"; 43 | return emailId; 44 | } 45 | 46 | 47 | @Test 48 | public void createUserTest() throws IOException { 49 | 50 | //String json: 51 | String reqJsonBody = "{\n" + 52 | " \"name\" : \"testingAPI\",\n" + 53 | " \"email\" : \"testpwapi1@gmail.com\",\n" + 54 | " \"gender\" : \"male\",\n" + 55 | " \"status\" : \"active\"\n" + 56 | "}"; 57 | 58 | //POST Call: create a user 59 | APIResponse apiPostResponse = requestContext.post("https://gorest.co.in/public/v2/users", 60 | RequestOptions.create() 61 | .setHeader("Content-Type", "application/json") 62 | .setHeader("Authorization", "Bearer f4bd5cb99e27882658a2233c4ddd1e8a14f49788f92938580971a46439aa774f") 63 | .setData(reqJsonBody)); 64 | 65 | System.out.println(apiPostResponse.status()); 66 | Assert.assertEquals(apiPostResponse.status(), 201); 67 | Assert.assertEquals(apiPostResponse.statusText(), "Created"); 68 | 69 | System.out.println(apiPostResponse.text()); 70 | 71 | ObjectMapper objectMapper = new ObjectMapper(); 72 | JsonNode postJsonResponse = objectMapper.readTree(apiPostResponse.body()); 73 | System.out.println(postJsonResponse.toPrettyString()); 74 | 75 | //capture id from the post json response: 76 | String userId = postJsonResponse.get("id").asText(); 77 | System.out.println("user id : " + userId); 78 | 79 | //GET Call: Fetch the same user by id: 80 | 81 | System.out.println("===============get call response============"); 82 | 83 | APIResponse apiGetResponse = 84 | requestContext.get("https://gorest.co.in/public/v2/users/"+ userId, 85 | RequestOptions.create() 86 | .setHeader("Authorization", "Bearer f4bd5cb99e27882658a2233c4ddd1e8a14f49788f92938580971a46439aa774f")); 87 | 88 | Assert.assertEquals(apiGetResponse.status(), 200); 89 | Assert.assertEquals(apiGetResponse.statusText(), "OK"); 90 | System.out.println(apiGetResponse.text()); 91 | Assert.assertTrue(apiGetResponse.text().contains(userId)); 92 | Assert.assertTrue(apiGetResponse.text().contains("testingAPI")); 93 | 94 | // Assert.assertTrue(apiGetResponse.text().contains(emailId)); 95 | 96 | 97 | } 98 | 99 | 100 | 101 | 102 | 103 | 104 | } 105 | -------------------------------------------------------------------------------- /src/test/java/com/qa/api/tests/POST/CreateUserWithJsonFileTest.java: -------------------------------------------------------------------------------- 1 | package com.qa.api.tests.POST; 2 | 3 | import com.fasterxml.jackson.databind.JsonNode; 4 | import com.fasterxml.jackson.databind.ObjectMapper; 5 | import com.microsoft.playwright.APIRequest; 6 | import com.microsoft.playwright.APIRequestContext; 7 | import com.microsoft.playwright.APIResponse; 8 | import com.microsoft.playwright.Playwright; 9 | import com.microsoft.playwright.options.RequestOptions; 10 | import org.testng.Assert; 11 | import org.testng.annotations.AfterTest; 12 | import org.testng.annotations.BeforeTest; 13 | import org.testng.annotations.Test; 14 | 15 | import java.io.File; 16 | import java.io.IOException; 17 | import java.nio.file.Files; 18 | 19 | public class CreateUserWithJsonFileTest { 20 | 21 | Playwright playwright; 22 | APIRequest request; 23 | APIRequestContext requestContext; 24 | 25 | static String emailId; 26 | 27 | @BeforeTest 28 | public void setup(){ 29 | playwright = Playwright.create(); 30 | request = playwright.request(); 31 | requestContext = request.newContext(); 32 | } 33 | 34 | @AfterTest 35 | public void tearDown(){ 36 | playwright.close(); 37 | } 38 | 39 | 40 | public static String getRandomEmail(){ 41 | emailId = "testpwautomation"+ System.currentTimeMillis() + "@gmail.com"; 42 | return emailId; 43 | } 44 | 45 | 46 | @Test 47 | public void createUserTest() throws IOException { 48 | 49 | //get json file: 50 | byte[] fileBytes = null; 51 | File file = new File("./src/test/data/user.json"); 52 | fileBytes = Files.readAllBytes(file.toPath()); 53 | 54 | //POST Call: create a user 55 | APIResponse apiPostResponse = requestContext.post("https://gorest.co.in/public/v2/users", 56 | RequestOptions.create() 57 | .setHeader("Content-Type", "application/json") 58 | .setHeader("Authorization", "Bearer abc123") 59 | .setData(fileBytes)); 60 | 61 | Assert.assertEquals(apiPostResponse.status(), 201); 62 | Assert.assertEquals(apiPostResponse.statusText(), "Created"); 63 | 64 | System.out.println(apiPostResponse.text()); 65 | 66 | ObjectMapper objectMapper = new ObjectMapper(); 67 | JsonNode postJsonResponse = objectMapper.readTree(apiPostResponse.body()); 68 | System.out.println(postJsonResponse.toPrettyString()); 69 | 70 | //capture id from the post json response: 71 | String userId = postJsonResponse.get("id").asText(); 72 | System.out.println("user id : " + userId); 73 | 74 | //GET Call: Fetch the same user by id: 75 | 76 | System.out.println("===============get call response============"); 77 | 78 | APIResponse apiGetResponse = 79 | requestContext.get("https://gorest.co.in/public/v2/users/"+ userId, 80 | RequestOptions.create() 81 | .setHeader("Authorization", "Bearer f4bd5cb99e27882658a2233c4ddd1e8a14f49788f92938580971a46439aa774f")); 82 | 83 | Assert.assertEquals(apiGetResponse.status(), 200); 84 | Assert.assertEquals(apiGetResponse.statusText(), "OK"); 85 | System.out.println(apiGetResponse.text()); 86 | Assert.assertTrue(apiGetResponse.text().contains(userId)); 87 | Assert.assertTrue(apiGetResponse.text().contains("naveentesting")); 88 | 89 | // Assert.assertTrue(apiGetResponse.text().contains(emailId)); 90 | 91 | 92 | } 93 | } 94 | -------------------------------------------------------------------------------- /src/test/java/com/qa/api/tests/PUT/UpdateUserPUTCallWithPOJOLombokTest.java: -------------------------------------------------------------------------------- 1 | package com.qa.api.tests.PUT; 2 | 3 | import com.api.data.User; 4 | import com.api.data.Users; 5 | import com.fasterxml.jackson.databind.ObjectMapper; 6 | import com.microsoft.playwright.APIRequest; 7 | import com.microsoft.playwright.APIRequestContext; 8 | import com.microsoft.playwright.APIResponse; 9 | import com.microsoft.playwright.Playwright; 10 | import com.microsoft.playwright.options.RequestOptions; 11 | import org.testng.Assert; 12 | import org.testng.annotations.AfterTest; 13 | import org.testng.annotations.BeforeTest; 14 | import org.testng.annotations.Test; 15 | 16 | import java.io.IOException; 17 | 18 | public class UpdateUserPUTCallWithPOJOLombokTest { 19 | 20 | //1. post - user id = 123 21 | //2. put - user id - /123 22 | //3. get -- user id /123 23 | Playwright playwright; 24 | APIRequest request; 25 | APIRequestContext requestContext; 26 | 27 | static String emailId; 28 | 29 | @BeforeTest 30 | public void setup(){ 31 | playwright = Playwright.create(); 32 | request = playwright.request(); 33 | requestContext = request.newContext(); 34 | } 35 | 36 | @AfterTest 37 | public void tearDown(){ 38 | playwright.close(); 39 | } 40 | 41 | 42 | public static String getRandomEmail(){ 43 | emailId = "testpwautomation"+ System.currentTimeMillis() + "@gmail.com"; 44 | return emailId; 45 | } 46 | 47 | 48 | @Test 49 | public void updateUserTest() throws IOException { 50 | 51 | //create users object: using builder pattern: 52 | Users users = Users.builder() 53 | .name("Naveen Automation Labs") 54 | .email(getRandomEmail()) 55 | .gender("male") 56 | .status("active").build(); 57 | 58 | //1. POST Call: create a user 59 | APIResponse apiPostResponse = requestContext.post("https://gorest.co.in/public/v2/users", 60 | RequestOptions.create() 61 | .setHeader("Content-Type", "application/json") 62 | .setHeader("Authorization", "Bearer e4b8e1f593dc4a731a153c5ec8cc9b8bbb583ae964ce650a741113091b4e2ac6") 63 | .setData(users)); 64 | 65 | System.out.println(apiPostResponse.url()); 66 | System.out.println(apiPostResponse.status()); 67 | Assert.assertEquals(apiPostResponse.status(), 201); 68 | Assert.assertEquals(apiPostResponse.statusText(), "Created"); 69 | 70 | String responseText = apiPostResponse.text(); 71 | System.out.println(responseText); 72 | 73 | //convert response text/json to POJO -- desrialization 74 | ObjectMapper objectMapper = new ObjectMapper(); 75 | User actUser = objectMapper.readValue(responseText, User.class); 76 | System.out.println("actual user from the response---->"); 77 | System.out.println(actUser); 78 | 79 | Assert.assertEquals(actUser.getName(), users.getName()); 80 | Assert.assertEquals(actUser.getEmail(), users.getEmail()); 81 | Assert.assertEquals(actUser.getStatus(), users.getStatus()); 82 | Assert.assertEquals(actUser.getGender(), users.getGender()); 83 | Assert.assertNotNull(actUser.getId()); 84 | 85 | String userId = actUser.getId(); 86 | System.out.println("new user id is : " + userId); 87 | 88 | //update status active to inactive 89 | users.setStatus("inactive"); 90 | users.setName("Naveen Automation Playwright"); 91 | 92 | System.out.println("---------------PUT CALL----------------"); 93 | 94 | //2. PUT Call - update user: 95 | APIResponse apiPUTResponse = requestContext.put("https://gorest.co.in/public/v2/users/" + userId, 96 | RequestOptions.create() 97 | .setHeader("Content-Type", "application/json") 98 | .setHeader("Authorization", "Bearer e4b8e1f593dc4a731a153c5ec8cc9b8bbb583ae964ce650a741113091b4e2ac6") 99 | .setData(users)); 100 | 101 | System.out.println(apiPUTResponse.status() + " : " + apiPUTResponse.statusText()); 102 | Assert.assertEquals(apiPUTResponse.status(), 200); 103 | 104 | String putResponseText = apiPUTResponse.text(); 105 | System.out.println("update user : " + putResponseText); 106 | 107 | Users actPutUser = objectMapper.readValue(putResponseText, Users.class); 108 | Assert.assertEquals(actPutUser.getId(), userId); 109 | Assert.assertEquals(actPutUser.getStatus(), users.getStatus()); 110 | Assert.assertEquals(actPutUser.getName(), users.getName()); 111 | 112 | System.out.println("---------------GET CALL----------------"); 113 | 114 | //3. Get the updates user with GET CALL: 115 | APIResponse apiGETResponse = requestContext.get("https://gorest.co.in/public/v2/users/"+userId, 116 | RequestOptions.create() 117 | .setHeader("Authorization", "Bearer e4b8e1f593dc4a731a153c5ec8cc9b8bbb583ae964ce650a741113091b4e2ac6")); 118 | 119 | System.out.println(apiGETResponse.url()); 120 | 121 | int statusCode = apiGETResponse.status(); 122 | System.out.println("response status code: " + statusCode); 123 | Assert.assertEquals(statusCode, 200); 124 | Assert.assertEquals(apiGETResponse.ok(), true); 125 | 126 | String statusGETStatusText = apiGETResponse.statusText(); 127 | System.out.println(statusGETStatusText); 128 | 129 | String getResponseText = apiGETResponse.text(); 130 | 131 | Users actGETUser = objectMapper.readValue(getResponseText, Users.class); 132 | Assert.assertEquals(actGETUser.getId(), userId); 133 | Assert.assertEquals(actGETUser.getStatus(), users.getStatus()); 134 | Assert.assertEquals(actGETUser.getName(), users.getName()); 135 | 136 | } 137 | 138 | 139 | 140 | 141 | } 142 | -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/Playwright-Java-API-Testing/17f51a6aeb8c894977dc0bea874ac76ae411a788/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/Playwright-Java-API-Testing/17f51a6aeb8c894977dc0bea874ac76ae411a788/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | /Users/naveenautomationlabs/Documents/Playwright-APIAutomation/src/test/java/com/qa/api/tests/CreateUserPostCallTest.java 2 | /Users/naveenautomationlabs/Documents/Playwright-APIAutomation/src/test/java/com/qa/api/tests/User.java 3 | /Users/naveenautomationlabs/Documents/Playwright-APIAutomation/src/test/java/com/qa/api/tests/APIDisposeTest.java 4 | /Users/naveenautomationlabs/Documents/Playwright-APIAutomation/src/test/java/com/qa/api/tests/GETAPICall.java 5 | /Users/naveenautomationlabs/Documents/Playwright-APIAutomation/src/test/java/com/qa/api/tests/CreateUserTestWithJsonStringTest.java 6 | /Users/naveenautomationlabs/Documents/Playwright-APIAutomation/src/test/java/com/qa/api/tests/CreateUserWithPOJOTest.java 7 | /Users/naveenautomationlabs/Documents/Playwright-APIAutomation/src/test/java/com/qa/api/tests/APIResponseHeadersTest.java 8 | /Users/naveenautomationlabs/Documents/Playwright-APIAutomation/src/test/java/com/qa/api/tests/CreateUserWithJsonFileTest.java 9 | -------------------------------------------------------------------------------- /target/surefire-reports/Surefire suite/Surefire test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | TestNG: Surefire test 4 | 5 | 6 | 7 | 11 | 53 | 54 | 55 | 56 |

Surefire test

57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 |
Tests passed/Failed/Skipped:3/3/0
Started on:Tue Apr 18 20:50:27 IST 2023
Total time:6 seconds (6166 ms)
Included groups:
Excluded groups:

69 | (Hover the method name to see the test class name)

70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 124 | 125 | 126 | 127 | 128 | 173 | 174 | 175 | 176 | 177 | 227 | 228 | 229 |
FAILED TESTS
Test methodExceptionTime (seconds)Instance
createUserTest
Test class: com.qa.api.tests.CreateUserWithJsonFileTest
java.lang.AssertionError: expected [201] but found [401]
 80 | 	at com.qa.api.tests.CreateUserWithJsonFileTest.createUserTest(CreateUserWithJsonFileTest.java:61)
 81 | 	at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
 82 | ... Removed 37 stack frames
Click to show all stack frames 83 |
java.lang.AssertionError: expected [201] but found [401]
 84 | 	at org.testng.Assert.fail(Assert.java:97)
 85 | 	at org.testng.Assert.assertEqualsImpl(Assert.java:136)
 86 | 	at org.testng.Assert.assertEquals(Assert.java:118)
 87 | 	at org.testng.Assert.assertEquals(Assert.java:839)
 88 | 	at org.testng.Assert.assertEquals(Assert.java:849)
 89 | 	at com.qa.api.tests.CreateUserWithJsonFileTest.createUserTest(CreateUserWithJsonFileTest.java:61)
 90 | 	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 91 | 	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
 92 | 	at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 93 | 	at java.base/java.lang.reflect.Method.invoke(Method.java:566)
 94 | 	at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:133)
 95 | 	at org.testng.internal.TestInvoker.invokeMethod(TestInvoker.java:584)
 96 | 	at org.testng.internal.TestInvoker.invokeTestMethod(TestInvoker.java:172)
 97 | 	at org.testng.internal.MethodRunner.runInSequence(MethodRunner.java:46)
 98 | 	at org.testng.internal.TestInvoker$MethodInvocationAgent.invoke(TestInvoker.java:804)
 99 | 	at org.testng.internal.TestInvoker.invokeTestMethods(TestInvoker.java:145)
100 | 	at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:146)
101 | 	at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:128)
102 | 	at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
103 | 	at org.testng.TestRunner.privateRun(TestRunner.java:770)
104 | 	at org.testng.TestRunner.run(TestRunner.java:591)
105 | 	at org.testng.SuiteRunner.runTest(SuiteRunner.java:402)
106 | 	at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:396)
107 | 	at org.testng.SuiteRunner.privateRun(SuiteRunner.java:355)
108 | 	at org.testng.SuiteRunner.run(SuiteRunner.java:304)
109 | 	at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:53)
110 | 	at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:96)
111 | 	at org.testng.TestNG.runSuitesSequentially(TestNG.java:1180)
112 | 	at org.testng.TestNG.runSuitesLocally(TestNG.java:1102)
113 | 	at org.testng.TestNG.runSuites(TestNG.java:1032)
114 | 	at org.testng.TestNG.run(TestNG.java:1000)
115 | 	at org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.java:135)
116 | 	at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.executeMulti(TestNGDirectoryTestSuite.java:193)
117 | 	at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.execute(TestNGDirectoryTestSuite.java:94)
118 | 	at org.apache.maven.surefire.testng.TestNGProvider.invoke(TestNGProvider.java:146)
119 | 	at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:384)
120 | 	at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:345)
121 | 	at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:126)
122 | 	at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:418)
123 | 
0com.qa.api.tests.CreateUserWithJsonFileTest@659a969b
createUserTest
Test class: com.qa.api.tests.CreateUserWithPOJOTest
java.lang.AssertionError: expected [201] but found [401]
129 | 	at com.qa.api.tests.CreateUserWithPOJOTest.createUserTest(CreateUserWithPOJOTest.java:58)
130 | 	at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
131 | ... Removed 37 stack frames
Click to show all stack frames 132 |
java.lang.AssertionError: expected [201] but found [401]
133 | 	at org.testng.Assert.fail(Assert.java:97)
134 | 	at org.testng.Assert.assertEqualsImpl(Assert.java:136)
135 | 	at org.testng.Assert.assertEquals(Assert.java:118)
136 | 	at org.testng.Assert.assertEquals(Assert.java:839)
137 | 	at org.testng.Assert.assertEquals(Assert.java:849)
138 | 	at com.qa.api.tests.CreateUserWithPOJOTest.createUserTest(CreateUserWithPOJOTest.java:58)
139 | 	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
140 | 	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
141 | 	at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
142 | 	at java.base/java.lang.reflect.Method.invoke(Method.java:566)
143 | 	at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:133)
144 | 	at org.testng.internal.TestInvoker.invokeMethod(TestInvoker.java:584)
145 | 	at org.testng.internal.TestInvoker.invokeTestMethod(TestInvoker.java:172)
146 | 	at org.testng.internal.MethodRunner.runInSequence(MethodRunner.java:46)
147 | 	at org.testng.internal.TestInvoker$MethodInvocationAgent.invoke(TestInvoker.java:804)
148 | 	at org.testng.internal.TestInvoker.invokeTestMethods(TestInvoker.java:145)
149 | 	at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:146)
150 | 	at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:128)
151 | 	at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
152 | 	at org.testng.TestRunner.privateRun(TestRunner.java:770)
153 | 	at org.testng.TestRunner.run(TestRunner.java:591)
154 | 	at org.testng.SuiteRunner.runTest(SuiteRunner.java:402)
155 | 	at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:396)
156 | 	at org.testng.SuiteRunner.privateRun(SuiteRunner.java:355)
157 | 	at org.testng.SuiteRunner.run(SuiteRunner.java:304)
158 | 	at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:53)
159 | 	at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:96)
160 | 	at org.testng.TestNG.runSuitesSequentially(TestNG.java:1180)
161 | 	at org.testng.TestNG.runSuitesLocally(TestNG.java:1102)
162 | 	at org.testng.TestNG.runSuites(TestNG.java:1032)
163 | 	at org.testng.TestNG.run(TestNG.java:1000)
164 | 	at org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.java:135)
165 | 	at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.executeMulti(TestNGDirectoryTestSuite.java:193)
166 | 	at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.execute(TestNGDirectoryTestSuite.java:94)
167 | 	at org.apache.maven.surefire.testng.TestNGProvider.invoke(TestNGProvider.java:146)
168 | 	at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:384)
169 | 	at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:345)
170 | 	at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:126)
171 | 	at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:418)
172 | 
0com.qa.api.tests.CreateUserWithPOJOTest@769f71a9
disposeResponseTest
Test class: com.qa.api.tests.APIDisposeTest
com.microsoft.playwright.PlaywrightException: Response has been disposed
178 | 	at com.microsoft.playwright.impl.APIResponseImpl.lambda$body$0(APIResponseImpl.java:55)
179 | 	at com.microsoft.playwright.impl.LoggingSupport.withLogging(LoggingSupport.java:47)
180 | 	at com.microsoft.playwright.impl.ChannelOwner.withLogging(ChannelOwner.java:87)
181 | 	at com.microsoft.playwright.impl.APIResponseImpl.body(APIResponseImpl.java:49)
182 | 	at com.microsoft.playwright.impl.APIResponseImpl.text(APIResponseImpl.java:104)
183 | 	at com.qa.api.tests.APIDisposeTest.disposeResponseTest(APIDisposeTest.java:67)
184 | 	at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
185 | ... Removed 32 stack frames
Click to show all stack frames 186 |
com.microsoft.playwright.PlaywrightException: Response has been disposed
187 | 	at com.microsoft.playwright.impl.APIResponseImpl.lambda$body$0(APIResponseImpl.java:55)
188 | 	at com.microsoft.playwright.impl.LoggingSupport.withLogging(LoggingSupport.java:47)
189 | 	at com.microsoft.playwright.impl.ChannelOwner.withLogging(ChannelOwner.java:87)
190 | 	at com.microsoft.playwright.impl.APIResponseImpl.body(APIResponseImpl.java:49)
191 | 	at com.microsoft.playwright.impl.APIResponseImpl.text(APIResponseImpl.java:104)
192 | 	at com.qa.api.tests.APIDisposeTest.disposeResponseTest(APIDisposeTest.java:67)
193 | 	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
194 | 	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
195 | 	at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
196 | 	at java.base/java.lang.reflect.Method.invoke(Method.java:566)
197 | 	at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:133)
198 | 	at org.testng.internal.TestInvoker.invokeMethod(TestInvoker.java:584)
199 | 	at org.testng.internal.TestInvoker.invokeTestMethod(TestInvoker.java:172)
200 | 	at org.testng.internal.MethodRunner.runInSequence(MethodRunner.java:46)
201 | 	at org.testng.internal.TestInvoker$MethodInvocationAgent.invoke(TestInvoker.java:804)
202 | 	at org.testng.internal.TestInvoker.invokeTestMethods(TestInvoker.java:145)
203 | 	at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:146)
204 | 	at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:128)
205 | 	at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
206 | 	at org.testng.TestRunner.privateRun(TestRunner.java:770)
207 | 	at org.testng.TestRunner.run(TestRunner.java:591)
208 | 	at org.testng.SuiteRunner.runTest(SuiteRunner.java:402)
209 | 	at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:396)
210 | 	at org.testng.SuiteRunner.privateRun(SuiteRunner.java:355)
211 | 	at org.testng.SuiteRunner.run(SuiteRunner.java:304)
212 | 	at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:53)
213 | 	at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:96)
214 | 	at org.testng.TestNG.runSuitesSequentially(TestNG.java:1180)
215 | 	at org.testng.TestNG.runSuitesLocally(TestNG.java:1102)
216 | 	at org.testng.TestNG.runSuites(TestNG.java:1032)
217 | 	at org.testng.TestNG.run(TestNG.java:1000)
218 | 	at org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.java:135)
219 | 	at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.executeMulti(TestNGDirectoryTestSuite.java:193)
220 | 	at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.execute(TestNGDirectoryTestSuite.java:94)
221 | 	at org.apache.maven.surefire.testng.TestNGProvider.invoke(TestNGProvider.java:146)
222 | 	at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:384)
223 | 	at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:345)
224 | 	at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:126)
225 | 	at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:418)
226 | 
0com.qa.api.tests.APIDisposeTest@49b0b76

230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 |
PASSED TESTS
Test methodExceptionTime (seconds)Instance
createUserTest
Test class: com.qa.api.tests.CreateUserTestWithJsonStringTest
0com.qa.api.tests.CreateUserTestWithJsonStringTest@76908cc0
createUserTest
Test class: com.qa.api.tests.CreateUserPostCallTest
0com.qa.api.tests.CreateUserPostCallTest@2473d930
getHeadersTest
Test class: com.qa.api.tests.APIResponseHeadersTest
0com.qa.api.tests.APIResponseHeadersTest@35047d03

253 | 254 | -------------------------------------------------------------------------------- /target/surefire-reports/Surefire suite/Surefire test.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 26 | 27 | 28 | 29 | 30 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /target/surefire-reports/Surefire suite/testng-failed.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 | -------------------------------------------------------------------------------- /target/surefire-reports/TEST-TestSuite.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 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | java.lang.AssertionError: expected [201] but found [401] 66 | at com.qa.api.tests.CreateUserWithJsonFileTest.createUserTest(CreateUserWithJsonFileTest.java:61) 67 | 68 | 69 | 70 | 71 | 72 | 73 | com.microsoft.playwright.PlaywrightException: Response has been disposed 74 | at com.qa.api.tests.APIDisposeTest.disposeResponseTest(APIDisposeTest.java:67) 75 | 76 | 89 | 90 | 91 | java.lang.AssertionError: expected [201] but found [401] 92 | at com.qa.api.tests.CreateUserWithPOJOTest.createUserTest(CreateUserWithPOJOTest.java:58) 93 | 94 | 95 | -------------------------------------------------------------------------------- /target/surefire-reports/TestSuite.txt: -------------------------------------------------------------------------------- 1 | ------------------------------------------------------------------------------- 2 | Test set: TestSuite 3 | ------------------------------------------------------------------------------- 4 | Tests run: 6, Failures: 3, Errors: 0, Skipped: 0, Time elapsed: 6.642 s <<< FAILURE! - in TestSuite 5 | createUserTest(com.qa.api.tests.CreateUserWithJsonFileTest) Time elapsed: 0.288 s <<< FAILURE! 6 | java.lang.AssertionError: expected [201] but found [401] 7 | at com.qa.api.tests.CreateUserWithJsonFileTest.createUserTest(CreateUserWithJsonFileTest.java:61) 8 | 9 | disposeResponseTest(com.qa.api.tests.APIDisposeTest) Time elapsed: 0.457 s <<< FAILURE! 10 | com.microsoft.playwright.PlaywrightException: Response has been disposed 11 | at com.qa.api.tests.APIDisposeTest.disposeResponseTest(APIDisposeTest.java:67) 12 | 13 | createUserTest(com.qa.api.tests.CreateUserWithPOJOTest) Time elapsed: 0.216 s <<< FAILURE! 14 | java.lang.AssertionError: expected [201] but found [401] 15 | at com.qa.api.tests.CreateUserWithPOJOTest.createUserTest(CreateUserWithPOJOTest.java:58) 16 | 17 | -------------------------------------------------------------------------------- /target/surefire-reports/bullet_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/Playwright-Java-API-Testing/17f51a6aeb8c894977dc0bea874ac76ae411a788/target/surefire-reports/bullet_point.png -------------------------------------------------------------------------------- /target/surefire-reports/collapseall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/Playwright-Java-API-Testing/17f51a6aeb8c894977dc0bea874ac76ae411a788/target/surefire-reports/collapseall.gif -------------------------------------------------------------------------------- /target/surefire-reports/emailable-report.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | TestNG Report 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
Test# Passed# Skipped# Retried# FailedTime (ms)Included GroupsExcluded Groups
Surefire suite
Surefire test30036,166
14 | 15 |
ClassMethodStartTime (ms)
Surefire suite
Surefire test — failed
com.qa.api.tests.APIDisposeTestdisposeResponseTest1681831232882459
com.qa.api.tests.CreateUserWithJsonFileTestcreateUserTest1681831231002282
com.qa.api.tests.CreateUserWithPOJOTestcreateUserTest1681831233342216
Surefire test — passed
com.qa.api.tests.APIResponseHeadersTestgetHeadersTest1681831232591291
com.qa.api.tests.CreateUserPostCallTestcreateUserTest1681831232014576
com.qa.api.tests.CreateUserTestWithJsonStringTestcreateUserTest1681831231292722
16 |

Surefire test

com.qa.api.tests.APIDisposeTest#disposeResponseTest

Exception
com.microsoft.playwright.PlaywrightException: Response has been disposed 17 | at com.microsoft.playwright.impl.APIResponseImpl.lambda$body$0(APIResponseImpl.java:55) 18 | at com.microsoft.playwright.impl.LoggingSupport.withLogging(LoggingSupport.java:47) 19 | at com.microsoft.playwright.impl.ChannelOwner.withLogging(ChannelOwner.java:87) 20 | at com.microsoft.playwright.impl.APIResponseImpl.body(APIResponseImpl.java:49) 21 | at com.microsoft.playwright.impl.APIResponseImpl.text(APIResponseImpl.java:104) 22 | at com.qa.api.tests.APIDisposeTest.disposeResponseTest(APIDisposeTest.java:67) 23 | at java.base/java.util.ArrayList.forEach(ArrayList.java:1541) 24 | ... Removed 32 stack frames

back to summary

25 |

com.qa.api.tests.CreateUserWithJsonFileTest#createUserTest

Exception
java.lang.AssertionError: expected [201] but found [401] 26 | at com.qa.api.tests.CreateUserWithJsonFileTest.createUserTest(CreateUserWithJsonFileTest.java:61) 27 | at java.base/java.util.ArrayList.forEach(ArrayList.java:1541) 28 | ... Removed 37 stack frames

back to summary

29 |

com.qa.api.tests.CreateUserWithPOJOTest#createUserTest

Exception
java.lang.AssertionError: expected [201] but found [401] 30 | at com.qa.api.tests.CreateUserWithPOJOTest.createUserTest(CreateUserWithPOJOTest.java:58) 31 | at java.base/java.util.ArrayList.forEach(ArrayList.java:1541) 32 | ... Removed 37 stack frames

back to summary

33 |

com.qa.api.tests.APIResponseHeadersTest#getHeadersTest

back to summary

34 |

com.qa.api.tests.CreateUserPostCallTest#createUserTest

back to summary

35 |

com.qa.api.tests.CreateUserTestWithJsonStringTest#createUserTest

back to summary

36 | 37 | 38 | -------------------------------------------------------------------------------- /target/surefire-reports/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/Playwright-Java-API-Testing/17f51a6aeb8c894977dc0bea874ac76ae411a788/target/surefire-reports/failed.png -------------------------------------------------------------------------------- /target/surefire-reports/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | TestNG reports 7 | 8 | 9 | 10 | 11 | 12 | 18 | 21 | 22 | 23 | 24 |
25 | Test results 26 |
27 | 1 suite, 3 failed tests 28 |
29 | 151 |
152 |
153 |
154 |
155 |
156 | 157 | com.qa.api.tests.APIDisposeTest 158 |
159 |
160 |
161 |
162 | 163 | 164 | disposeResponseTest 165 |
com.microsoft.playwright.PlaywrightException: Response has been disposed 166 | at com.microsoft.playwright.impl.APIResponseImpl.lambda$body$0(APIResponseImpl.java:55) 167 | at com.microsoft.playwright.impl.LoggingSupport.withLogging(LoggingSupport.java:47) 168 | at com.microsoft.playwright.impl.ChannelOwner.withLogging(ChannelOwner.java:87) 169 | at com.microsoft.playwright.impl.APIResponseImpl.body(APIResponseImpl.java:49) 170 | at com.microsoft.playwright.impl.APIResponseImpl.text(APIResponseImpl.java:104) 171 | at com.qa.api.tests.APIDisposeTest.disposeResponseTest(APIDisposeTest.java:67) 172 | at java.base/java.util.ArrayList.forEach(ArrayList.java:1541) 173 | ... Removed 32 stack frames 174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 | 182 | com.qa.api.tests.CreateUserWithPOJOTest 183 |
184 |
185 |
186 |
187 | 188 | 189 | createUserTest 190 |
java.lang.AssertionError: expected [201] but found [401] 191 | at com.qa.api.tests.CreateUserWithPOJOTest.createUserTest(CreateUserWithPOJOTest.java:58) 192 | at java.base/java.util.ArrayList.forEach(ArrayList.java:1541) 193 | ... Removed 37 stack frames 194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 | 202 | com.qa.api.tests.CreateUserWithJsonFileTest 203 |
204 |
205 |
206 |
207 | 208 | 209 | createUserTest 210 |
java.lang.AssertionError: expected [201] but found [401] 211 | at com.qa.api.tests.CreateUserWithJsonFileTest.createUserTest(CreateUserWithJsonFileTest.java:61) 212 | at java.base/java.util.ArrayList.forEach(ArrayList.java:1541) 213 | ... Removed 37 stack frames 214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 | 222 | com.qa.api.tests.CreateUserTestWithJsonStringTest 223 |
224 |
225 |
226 |
227 | 228 | 229 | createUserTest 230 |
231 |
232 |
233 |
234 |
235 |
236 | 237 | com.qa.api.tests.CreateUserPostCallTest 238 |
239 |
240 |
241 |
242 | 243 | 244 | createUserTest 245 |
246 |
247 |
248 |
249 |
250 |
251 | 252 | com.qa.api.tests.APIResponseHeadersTest 253 |
254 |
255 |
256 |
257 | 258 | 259 | getHeadersTest 260 |
261 |
262 |
263 |
264 |
265 |
266 |
267 |
268 |
269 |
270 | <?xml version="1.0" encoding="UTF-8"?>
271 | <!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">
272 | <suite thread-count="1" name="Surefire suite" verbose="0">
273 |   <test thread-count="1" name="Surefire test" verbose="0">
274 |     <classes>
275 |       <class name="com.qa.api.tests.CreateUserWithJsonFileTest"/>
276 |       <class name="com.qa.api.tests.CreateUserTestWithJsonStringTest"/>
277 |       <class name="com.qa.api.tests.CreateUserPostCallTest"/>
278 |       <class name="com.qa.api.tests.APIResponseHeadersTest"/>
279 |       <class name="com.qa.api.tests.APIDisposeTest"/>
280 |       <class name="com.qa.api.tests.CreateUserWithPOJOTest"/>
281 |     </classes>
282 |   </test> <!-- Surefire test -->
283 | </suite> <!-- Surefire suite -->
284 |             
285 |
286 |
287 |
288 |
289 | Tests for Surefire suite 290 |
291 |
292 |
    293 |
  • 294 | Surefire test (6 classes) 295 |
  • 296 |
297 |
298 |
299 |
300 |
301 | Groups for Surefire suite 302 |
303 |
304 |
305 |
306 |
307 |
308 | Times for Surefire suite 309 |
310 |
311 |
312 | 349 | Total running time: 2 seconds 350 |
351 |
352 |
353 |
354 |
355 |
356 |
357 | Reporter output for Surefire suite 358 |
359 |
360 |
361 |
362 |
363 |
364 | 0 ignored methods 365 |
366 |
367 |
368 |
369 |
370 |
371 | Methods in chronological order 372 |
373 |
374 |
375 |
com.qa.api.tests.APIDisposeTest
376 |
377 | setup 378 | 0 ms 379 |
380 |
381 |
382 |
com.qa.api.tests.APIResponseHeadersTest
383 |
384 | setup 385 | 2271 ms 386 |
387 |
388 |
389 |
com.qa.api.tests.CreateUserPostCallTest
390 |
391 | setup 392 | 2522 ms 393 |
394 |
395 |
396 |
com.qa.api.tests.CreateUserTestWithJsonStringTest
397 |
398 | setup 399 | 2770 ms 400 |
401 |
402 |
403 |
com.qa.api.tests.CreateUserWithJsonFileTest
404 |
405 | setup 406 | 3020 ms 407 |
408 |
409 |
410 |
com.qa.api.tests.CreateUserWithPOJOTest
411 |
412 | setup 413 | 3279 ms 414 |
415 |
416 |
417 |
com.qa.api.tests.CreateUserWithJsonFileTest
418 |
419 | 420 | 421 | createUserTest 422 | 3565 ms 423 |
424 |
425 |
426 |
com.qa.api.tests.CreateUserTestWithJsonStringTest
427 |
428 | createUserTest 429 | 3855 ms 430 |
431 |
432 |
433 |
com.qa.api.tests.CreateUserPostCallTest
434 |
435 | createUserTest 436 | 4577 ms 437 |
438 |
439 |
440 |
com.qa.api.tests.APIResponseHeadersTest
441 |
442 | getHeadersTest 443 | 5154 ms 444 |
445 |
446 |
447 |
com.qa.api.tests.APIDisposeTest
448 |
449 | 450 | 451 | disposeResponseTest 452 | 5445 ms 453 |
454 |
455 |
456 |
com.qa.api.tests.CreateUserWithPOJOTest
457 |
458 | 459 | 460 | createUserTest 461 | 5905 ms 462 |
463 |
464 |
465 |
com.qa.api.tests.APIDisposeTest
466 |
467 | tearDown 468 | 6121 ms 469 |
470 |
471 |
472 |
com.qa.api.tests.APIResponseHeadersTest
473 |
474 | tearDown 475 | 6129 ms 476 |
477 |
478 |
479 |
com.qa.api.tests.CreateUserPostCallTest
480 |
481 | tearDown 482 | 6137 ms 483 |
484 |
485 |
486 |
com.qa.api.tests.CreateUserTestWithJsonStringTest
487 |
488 | tearDown 489 | 6144 ms 490 |
491 |
492 |
493 |
com.qa.api.tests.CreateUserWithJsonFileTest
494 |
495 | tearDown 496 | 6151 ms 497 |
498 |
499 |
500 |
com.qa.api.tests.CreateUserWithPOJOTest
501 |
502 | tearDown 503 | 6158 ms 504 |
505 |
506 |
507 |
508 |
509 | 510 | 511 | -------------------------------------------------------------------------------- /target/surefire-reports/junitreports/TEST-com.qa.api.tests.APIDisposeTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /target/surefire-reports/junitreports/TEST-com.qa.api.tests.APIResponseHeadersTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /target/surefire-reports/junitreports/TEST-com.qa.api.tests.CreateUserPostCallTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /target/surefire-reports/junitreports/TEST-com.qa.api.tests.CreateUserTestWithJsonStringTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /target/surefire-reports/junitreports/TEST-com.qa.api.tests.CreateUserWithJsonFileTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /target/surefire-reports/junitreports/TEST-com.qa.api.tests.CreateUserWithPOJOTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /target/surefire-reports/navigator-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/Playwright-Java-API-Testing/17f51a6aeb8c894977dc0bea874ac76ae411a788/target/surefire-reports/navigator-bullet.png -------------------------------------------------------------------------------- /target/surefire-reports/old/Surefire suite/Surefire test.properties: -------------------------------------------------------------------------------- 1 | [SuiteResult context=Surefire test] -------------------------------------------------------------------------------- /target/surefire-reports/old/Surefire suite/classes.html: -------------------------------------------------------------------------------- 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 |
Class nameMethod nameGroups
com.qa.api.tests.APIDisposeTest  
@Test
 disposeResponseTest 
@BeforeClass
@BeforeMethod
@AfterMethod
@AfterClass
com.qa.api.tests.CreateUserTestWithJsonStringTest  
@Test
 createUserTest 
@BeforeClass
@BeforeMethod
@AfterMethod
@AfterClass
com.qa.api.tests.CreateUserWithJsonFileTest  
@Test
 createUserTest 
@BeforeClass
@BeforeMethod
@AfterMethod
@AfterClass
com.qa.api.tests.CreateUserWithPOJOTest  
@Test
 createUserTest 
@BeforeClass
@BeforeMethod
@AfterMethod
@AfterClass
com.qa.api.tests.CreateUserPostCallTest  
@Test
 createUserTest 
@BeforeClass
@BeforeMethod
@AfterMethod
@AfterClass
com.qa.api.tests.APIResponseHeadersTest  
@Test
 getHeadersTest 
@BeforeClass
@BeforeMethod
@AfterMethod
@AfterClass
139 | -------------------------------------------------------------------------------- /target/surefire-reports/old/Surefire suite/groups.html: -------------------------------------------------------------------------------- 1 |

Groups used for this test run

-------------------------------------------------------------------------------- /target/surefire-reports/old/Surefire suite/index.html: -------------------------------------------------------------------------------- 1 | Results for Surefire suite 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /target/surefire-reports/old/Surefire suite/main.html: -------------------------------------------------------------------------------- 1 | Results for Surefire suite 2 | Select a result on the left-hand pane. 3 | -------------------------------------------------------------------------------- /target/surefire-reports/old/Surefire suite/methods-alphabetical.html: -------------------------------------------------------------------------------- 1 |

Methods run, sorted chronologically

>> means before, << means after


Surefire suite

(Hover the method name to see the test class name)

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 |
TimeDelta (ms)Suite
configuration
Test
configuration
Class
configuration
Groups
configuration
Method
configuration
Test
method
ThreadInstances
23/04/18 20:50:31 0      createUserTestmain@1822971466
23/04/18 20:50:31 289      createUserTestmain@1822971466
23/04/18 20:50:32 1012      createUserTestmain@1822971466
23/04/18 20:50:33 2340      createUserTestmain@1822971466
23/04/18 20:50:32 1880      disposeResponseTestmain@1822971466
23/04/18 20:50:32 1589      getHeadersTestmain@1822971466
23/04/18 20:50:27 -3561  >>setup     main@1822971466
23/04/18 20:50:29 -1294  >>setup     main@1822971466
23/04/18 20:50:29 -1043  >>setup     main@1822971466
23/04/18 20:50:30 -795  >>setup     main@1822971466
23/04/18 20:50:30 -544  >>setup     main@1822971466
23/04/18 20:50:30 -286  >>setup     main@1822971466
23/04/18 20:50:33 2556  <<tearDown     main@1822971466
23/04/18 20:50:33 2564  <<tearDown     main@1822971466
23/04/18 20:50:33 2572  <<tearDown     main@1822971466
23/04/18 20:50:33 2579  <<tearDown     main@1822971466
23/04/18 20:50:33 2586  <<tearDown     main@1822971466
23/04/18 20:50:33 2593  <<tearDown     main@1822971466
41 | -------------------------------------------------------------------------------- /target/surefire-reports/old/Surefire suite/methods-not-run.html: -------------------------------------------------------------------------------- 1 |

Methods that were not run

2 |
-------------------------------------------------------------------------------- /target/surefire-reports/old/Surefire suite/methods.html: -------------------------------------------------------------------------------- 1 |

Methods run, sorted chronologically

>> means before, << means after


Surefire suite

(Hover the method name to see the test class name)

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 |
TimeDelta (ms)Suite
configuration
Test
configuration
Class
configuration
Groups
configuration
Method
configuration
Test
method
ThreadInstances
23/04/18 20:50:27 0  >>setup     main@1822971466
23/04/18 20:50:29 2267  >>setup     main@1822971466
23/04/18 20:50:29 2518  >>setup     main@1822971466
23/04/18 20:50:30 2766  >>setup     main@1822971466
23/04/18 20:50:30 3017  >>setup     main@1822971466
23/04/18 20:50:30 3275  >>setup     main@1822971466
23/04/18 20:50:31 3561      createUserTestmain@1822971466
23/04/18 20:50:31 3850      createUserTestmain@1822971466
23/04/18 20:50:32 4573      createUserTestmain@1822971466
23/04/18 20:50:32 5150      getHeadersTestmain@1822971466
23/04/18 20:50:32 5441      disposeResponseTestmain@1822971466
23/04/18 20:50:33 5901      createUserTestmain@1822971466
23/04/18 20:50:33 6117  <<tearDown     main@1822971466
23/04/18 20:50:33 6125  <<tearDown     main@1822971466
23/04/18 20:50:33 6133  <<tearDown     main@1822971466
23/04/18 20:50:33 6140  <<tearDown     main@1822971466
23/04/18 20:50:33 6147  <<tearDown     main@1822971466
23/04/18 20:50:33 6154  <<tearDown     main@1822971466
41 | -------------------------------------------------------------------------------- /target/surefire-reports/old/Surefire suite/reporter-output.html: -------------------------------------------------------------------------------- 1 |

Reporter output

-------------------------------------------------------------------------------- /target/surefire-reports/old/Surefire suite/testng.xml.html: -------------------------------------------------------------------------------- 1 | testng.xml for Surefire suite<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">
<suite thread-count="1" name="Surefire suite" verbose="0">
  <test thread-count="1" name="Surefire test" verbose="0">
    <classes>
      <class name="com.qa.api.tests.CreateUserWithJsonFileTest"/>
      <class name="com.qa.api.tests.CreateUserTestWithJsonStringTest"/>
      <class name="com.qa.api.tests.CreateUserPostCallTest"/>
      <class name="com.qa.api.tests.APIResponseHeadersTest"/>
      <class name="com.qa.api.tests.APIDisposeTest"/>
      <class name="com.qa.api.tests.CreateUserWithPOJOTest"/>
    </classes>
  </test> <!-- Surefire test -->
</suite> <!-- Surefire suite -->
-------------------------------------------------------------------------------- /target/surefire-reports/old/Surefire suite/toc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Results for Surefire suite 4 | 5 | 6 | 7 | 8 |

Results for
Surefire suite

9 | 10 | 11 | 12 | 13 | 17 | 18 | 19 | 20 | 21 | 22 |
1 test6 classes6 methods:
14 |   chronological
15 |   alphabetical
16 |   not run (0)
0 groupreporter outputtestng.xml
23 | 24 |

29 |

25 |
Surefire test (3/3/0) 26 | Results 27 |
28 |
30 | -------------------------------------------------------------------------------- /target/surefire-reports/old/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |

Test results

6 | 7 | 8 | 9 |
SuitePassedFailedSkippedtestng.xml
Total330 
Surefire suite330Link
10 | -------------------------------------------------------------------------------- /target/surefire-reports/passed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/Playwright-Java-API-Testing/17f51a6aeb8c894977dc0bea874ac76ae411a788/target/surefire-reports/passed.png -------------------------------------------------------------------------------- /target/surefire-reports/skipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/Playwright-Java-API-Testing/17f51a6aeb8c894977dc0bea874ac76ae411a788/target/surefire-reports/skipped.png -------------------------------------------------------------------------------- /target/surefire-reports/testng-failed.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 | -------------------------------------------------------------------------------- /target/surefire-reports/testng-reports.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0 0 5px 5px; 3 | } 4 | 5 | ul { 6 | margin: 0; 7 | } 8 | 9 | li { 10 | list-style-type: none; 11 | } 12 | 13 | a { 14 | text-decoration: none; 15 | } 16 | 17 | a:hover { 18 | text-decoration: underline; 19 | } 20 | 21 | .navigator-selected { 22 | background: #ffa500; 23 | } 24 | 25 | .wrapper { 26 | position: absolute; 27 | top: 60px; 28 | bottom: 0; 29 | left: 400px; 30 | right: 0; 31 | overflow: auto; 32 | } 33 | 34 | .navigator-root { 35 | position: absolute; 36 | top: 60px; 37 | bottom: 0; 38 | left: 0; 39 | width: 400px; 40 | overflow-y: auto; 41 | } 42 | 43 | .suite { 44 | margin: 0 10px 10px 0; 45 | background-color: #fff8dc; 46 | } 47 | 48 | .suite-name { 49 | padding-left: 10px; 50 | font-size: 25px; 51 | font-family: Times, sans-serif; 52 | } 53 | 54 | .main-panel-header { 55 | padding: 5px; 56 | background-color: #9FB4D9; /*afeeee*/; 57 | font-family: monospace; 58 | font-size: 18px; 59 | } 60 | 61 | .main-panel-content { 62 | padding: 5px; 63 | margin-bottom: 10px; 64 | background-color: #DEE8FC; /*d0ffff*/; 65 | } 66 | 67 | .rounded-window { 68 | border-radius: 10px; 69 | border-style: solid; 70 | border-width: 1px; 71 | } 72 | 73 | .rounded-window-top { 74 | border-top-right-radius: 10px 10px; 75 | border-top-left-radius: 10px 10px; 76 | border-style: solid; 77 | border-width: 1px; 78 | overflow: auto; 79 | } 80 | 81 | .light-rounded-window-top { 82 | border-top-right-radius: 10px 10px; 83 | border-top-left-radius: 10px 10px; 84 | } 85 | 86 | .rounded-window-bottom { 87 | border-style: solid; 88 | border-width: 0 1px 1px 1px; 89 | border-bottom-right-radius: 10px 10px; 90 | border-bottom-left-radius: 10px 10px; 91 | overflow: auto; 92 | } 93 | 94 | .method-name { 95 | font-size: 12px; 96 | font-family: monospace; 97 | } 98 | 99 | .method-content { 100 | border-style: solid; 101 | border-width: 0 0 1px 0; 102 | margin-bottom: 10px; 103 | padding-bottom: 5px; 104 | width: 80%; 105 | } 106 | 107 | .parameters { 108 | font-size: 14px; 109 | font-family: monospace; 110 | } 111 | 112 | .stack-trace { 113 | white-space: pre; 114 | font-family: monospace; 115 | font-size: 12px; 116 | font-weight: bold; 117 | margin-top: 0; 118 | margin-left: 20px; 119 | } 120 | 121 | .testng-xml { 122 | font-family: monospace; 123 | } 124 | 125 | .method-list-content { 126 | margin-left: 10px; 127 | } 128 | 129 | .navigator-suite-content { 130 | margin-left: 10px; 131 | font: 12px 'Lucida Grande'; 132 | } 133 | 134 | .suite-section-title { 135 | margin-top: 10px; 136 | width: 80%; 137 | border-style: solid; 138 | border-width: 1px 0 0 0; 139 | font-family: Times, sans-serif; 140 | font-size: 18px; 141 | font-weight: bold; 142 | } 143 | 144 | .suite-section-content { 145 | list-style-image: url(bullet_point.png); 146 | } 147 | 148 | .top-banner-root { 149 | position: absolute; 150 | top: 0; 151 | height: 45px; 152 | left: 0; 153 | right: 0; 154 | padding: 5px; 155 | margin: 0 0 5px 0; 156 | background-color: #0066ff; 157 | font-family: Times, sans-serif; 158 | color: #fff; 159 | text-align: center; 160 | } 161 | 162 | .top-banner-title-font { 163 | font-size: 25px; 164 | } 165 | 166 | .test-name { 167 | font-family: 'Lucida Grande', sans-serif; 168 | font-size: 16px; 169 | } 170 | 171 | .suite-icon { 172 | padding: 5px; 173 | float: right; 174 | height: 20px; 175 | } 176 | 177 | .test-group { 178 | font: 20px 'Lucida Grande'; 179 | margin: 5px 5px 10px 5px; 180 | border-width: 0 0 1px 0; 181 | border-style: solid; 182 | padding: 5px; 183 | } 184 | 185 | .test-group-name { 186 | font-weight: bold; 187 | } 188 | 189 | .method-in-group { 190 | font-size: 16px; 191 | margin-left: 80px; 192 | } 193 | 194 | table.google-visualization-table-table { 195 | width: 100%; 196 | } 197 | 198 | .reporter-method-name { 199 | font-size: 14px; 200 | font-family: monospace; 201 | } 202 | 203 | .reporter-method-output-div { 204 | padding: 5px; 205 | margin: 0 0 5px 20px; 206 | font-size: 12px; 207 | font-family: monospace; 208 | border-width: 0 0 0 1px; 209 | border-style: solid; 210 | } 211 | 212 | .ignored-class-div { 213 | font-size: 14px; 214 | font-family: monospace; 215 | } 216 | 217 | .ignored-methods-div { 218 | padding: 5px; 219 | margin: 0 0 5px 20px; 220 | font-size: 12px; 221 | font-family: monospace; 222 | border-width: 0 0 0 1px; 223 | border-style: solid; 224 | } 225 | 226 | .border-failed { 227 | border-top-left-radius: 10px 10px; 228 | border-bottom-left-radius: 10px 10px; 229 | border-style: solid; 230 | border-width: 0 0 0 10px; 231 | border-color: #f00; 232 | } 233 | 234 | .border-skipped { 235 | border-top-left-radius: 10px 10px; 236 | border-bottom-left-radius: 10px 10px; 237 | border-style: solid; 238 | border-width: 0 0 0 10px; 239 | border-color: #edc600; 240 | } 241 | 242 | .border-passed { 243 | border-top-left-radius: 10px 10px; 244 | border-bottom-left-radius: 10px 10px; 245 | border-style: solid; 246 | border-width: 0 0 0 10px; 247 | border-color: #19f52d; 248 | } 249 | 250 | .times-div { 251 | text-align: center; 252 | padding: 5px; 253 | } 254 | 255 | .suite-total-time { 256 | font: 16px 'Lucida Grande'; 257 | } 258 | 259 | .configuration-suite { 260 | margin-left: 20px; 261 | } 262 | 263 | .configuration-test { 264 | margin-left: 40px; 265 | } 266 | 267 | .configuration-class { 268 | margin-left: 60px; 269 | } 270 | 271 | .configuration-method { 272 | margin-left: 80px; 273 | } 274 | 275 | .test-method { 276 | margin-left: 100px; 277 | } 278 | 279 | .chronological-class { 280 | background-color: skyblue; 281 | border-style: solid; 282 | border-width: 0 0 1px 1px; 283 | } 284 | 285 | .method-start { 286 | float: right; 287 | } 288 | 289 | .chronological-class-name { 290 | padding: 0 0 0 5px; 291 | color: #008; 292 | } 293 | 294 | .after, .before, .test-method { 295 | font-family: monospace; 296 | font-size: 14px; 297 | } 298 | 299 | .navigator-suite-header { 300 | font-size: 22px; 301 | margin: 0 10px 5px 0; 302 | background-color: #deb887; 303 | text-align: center; 304 | } 305 | 306 | .collapse-all-icon { 307 | padding: 5px; 308 | float: right; 309 | } 310 | -------------------------------------------------------------------------------- /target/surefire-reports/testng-reports.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | $('a.navigator-link').click(function() { 3 | // Extract the panel for this link 4 | var panel = getPanelName($(this)); 5 | 6 | // Mark this link as currently selected 7 | $('.navigator-link').parent().removeClass('navigator-selected'); 8 | $(this).parent().addClass('navigator-selected'); 9 | 10 | showPanel(panel); 11 | }); 12 | 13 | installMethodHandlers('failed'); 14 | installMethodHandlers('skipped'); 15 | installMethodHandlers('passed', true); // hide passed methods by default 16 | 17 | $('a.method').click(function() { 18 | showMethod($(this)); 19 | return false; 20 | }); 21 | 22 | // Hide all the panels and display the first one (do this last 23 | // to make sure the click() will invoke the listeners) 24 | $('.panel').hide(); 25 | $('.navigator-link').first().click(); 26 | 27 | // Collapse/expand the suites 28 | $('a.collapse-all-link').click(function() { 29 | var contents = $('.navigator-suite-content'); 30 | if (contents.css('display') == 'none') { 31 | contents.show(); 32 | } else { 33 | contents.hide(); 34 | } 35 | }); 36 | }); 37 | 38 | // The handlers that take care of showing/hiding the methods 39 | function installMethodHandlers(name, hide) { 40 | function getContent(t) { 41 | return $('.method-list-content.' + name + "." + t.attr('panel-name')); 42 | } 43 | 44 | function getHideLink(t, name) { 45 | var s = 'a.hide-methods.' + name + "." + t.attr('panel-name'); 46 | return $(s); 47 | } 48 | 49 | function getShowLink(t, name) { 50 | return $('a.show-methods.' + name + "." + t.attr('panel-name')); 51 | } 52 | 53 | function getMethodPanelClassSel(element, name) { 54 | var panelName = getPanelName(element); 55 | var sel = '.' + panelName + "-class-" + name; 56 | return $(sel); 57 | } 58 | 59 | $('a.hide-methods.' + name).click(function() { 60 | var w = getContent($(this)); 61 | w.hide(); 62 | getHideLink($(this), name).hide(); 63 | getShowLink($(this), name).show(); 64 | getMethodPanelClassSel($(this), name).hide(); 65 | }); 66 | 67 | $('a.show-methods.' + name).click(function() { 68 | var w = getContent($(this)); 69 | w.show(); 70 | getHideLink($(this), name).show(); 71 | getShowLink($(this), name).hide(); 72 | showPanel(getPanelName($(this))); 73 | getMethodPanelClassSel($(this), name).show(); 74 | }); 75 | 76 | if (hide) { 77 | $('a.hide-methods.' + name).click(); 78 | } else { 79 | $('a.show-methods.' + name).click(); 80 | } 81 | } 82 | 83 | function getHashForMethod(element) { 84 | return element.attr('hash-for-method'); 85 | } 86 | 87 | function getPanelName(element) { 88 | return element.attr('panel-name'); 89 | } 90 | 91 | function showPanel(panelName) { 92 | $('.panel').hide(); 93 | var panel = $('.panel[panel-name="' + panelName + '"]'); 94 | panel.show(); 95 | } 96 | 97 | function showMethod(element) { 98 | var hashTag = getHashForMethod(element); 99 | var panelName = getPanelName(element); 100 | showPanel(panelName); 101 | var current = document.location.href; 102 | var base = current.substring(0, current.indexOf('#')) 103 | document.location.href = base + '#' + hashTag; 104 | var newPosition = $(document).scrollTop() - 65; 105 | $(document).scrollTop(newPosition); 106 | } 107 | 108 | function drawTable() { 109 | for (var i = 0; i < suiteTableInitFunctions.length; i++) { 110 | window[suiteTableInitFunctions[i]](); 111 | } 112 | 113 | for (var k in window.suiteTableData) { 114 | var v = window.suiteTableData[k]; 115 | var div = v.tableDiv; 116 | var data = v.tableData 117 | var table = new google.visualization.Table(document.getElementById(div)); 118 | table.draw(data, { 119 | showRowNumber : false 120 | }); 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /target/surefire-reports/testng-results.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 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 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 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 | -------------------------------------------------------------------------------- /target/surefire-reports/testng.css: -------------------------------------------------------------------------------- 1 | .invocation-failed, .test-failed { background-color: #DD0000; } 2 | .invocation-percent, .test-percent { background-color: #006600; } 3 | .invocation-passed, .test-passed { background-color: #00AA00; } 4 | .invocation-skipped, .test-skipped { background-color: #CCCC00; } 5 | 6 | .main-page { 7 | font-size: x-large; 8 | } 9 | 10 | --------------------------------------------------------------------------------