How to use isBinary method of com.tngtech.jgiven.attachment.MediaType class

Best JGiven code snippet using com.tngtech.jgiven.attachment.MediaType.isBinary

Source:Html5AttachmentGenerator.java Github

copy

Full Screen

...112 private File writeFile(AttachmentModel attachment, MediaType mediaType) {113 String extension = getExtension(mediaType);114 File targetFile = getTargetFile(attachment.getFileName(), extension);115 try {116 if (attachment.isBinary()) {117 if (mediaType.is(MediaType.ANY_IMAGE_TYPE)) {118 File thumbFile = getThumbnailFileFor(targetFile);119 byte[] thumbnail = compressToThumbnail(attachment.getValue(), extension);120 Files.write(thumbnail, thumbFile);121 }122 Files.write(BaseEncoding.base64().decode(attachment.getValue()), targetFile);123 } else {124 Files.write(attachment.getValue().getBytes(Charsets.UTF_8), targetFile);125 if (com.tngtech.jgiven.attachment.MediaType.SVG_UTF_8.toString().equals(attachment.getMediaType())) {126 File thumbFile = getThumbnailFileFor(targetFile);127 writeThumbnailForSVG(targetFile, thumbFile);128 }129 }130 } catch (IOException e) {...

Full Screen

Full Screen

Source:Attachment.java Github

copy

Full Screen

...140 * The bytes will be Base64 encoded.141 * @throws java.lang.IllegalArgumentException if mediaType is not binary142 */143 public static Attachment fromBinaryBytes( byte[] bytes, MediaType mediaType ) {144 if( !mediaType.isBinary() ) {145 throw new IllegalArgumentException( "MediaType must be binary" );146 }147 return new Attachment(BaseEncoding.base64().encode( bytes ), mediaType, null );148 }149 /**150 * Creates an attachment from a binary input stream.151 * The content of the stream will be transformed into a Base64 encoded string152 * @throws IOException if an I/O error occurs153 * @throws java.lang.IllegalArgumentException if mediaType is not binary154 */155 public static Attachment fromBinaryInputStream( InputStream inputStream, MediaType mediaType ) throws IOException {156 return fromBinaryBytes( ByteStreams.toByteArray( inputStream ), mediaType );157 }158 /**159 * Creates an attachment from the given binary file {@code file}.160 * The content of the file will be transformed into a Base64 encoded string.161 * @throws IOException if an I/O error occurs162 * @throws java.lang.IllegalArgumentException if mediaType is not binary163 */164 public static Attachment fromBinaryFile( File file, MediaType mediaType ) throws IOException {165 FileInputStream stream = new FileInputStream( file );166 try {167 return fromBinaryInputStream( stream, mediaType );168 } finally {169 ResourceUtil.close( stream );170 }171 }172 /**173 * Creates a non-binary attachment from the given file.174 * @throws IOException if an I/O error occurs175 * @throws java.lang.IllegalArgumentException if mediaType is either binary or has no specified charset176 */177 public static Attachment fromTextFile( File file, MediaType mediaType ) throws IOException {178 return fromText( Files.toString( file, mediaType.getCharset() ), mediaType );179 }180 /**181 * Creates a non-binary attachment from the given file.182 * @throws IOException if an I/O error occurs183 * @throws java.lang.IllegalArgumentException if mediaType is either binary or has no specified charset184 */185 public static Attachment fromTextInputStream( InputStream inputStream, MediaType mediaType ) throws IOException {186 return fromText( CharStreams.toString( new InputStreamReader( inputStream, mediaType.getCharset() ) ), mediaType );187 }188 /**189 * Equivalent to {@link com.tngtech.jgiven.attachment.Attachment#Attachment(String, MediaType)}190 * @throws java.lang.IllegalArgumentException if mediaType is binary191 */192 public static Attachment fromText( String content, MediaType mediaType ) {193 if( mediaType.isBinary() ) {194 throw new IllegalArgumentException( "MediaType must not be binary" );195 }196 return new Attachment( content, mediaType );197 }198 /**199 * Creates a text attachment with the given content with media type text/plain.200 * 201 * @param content the content of the attachment202 */203 public static Attachment plainText( String content ) {204 return fromText( content, MediaType.PLAIN_TEXT_UTF_8 );205 }206 /**207 * Creates a text attachment with the given content with media type text/xml.208 *209 * @param content the content of the attachment210 */211 public static Attachment xml( String content ) {212 return fromText( content, MediaType.XML_UTF_8 );213 }214 /**215 * Creates a text attachment with the given content with media type application/json.216 *217 * @param content the content of the attachment218 */219 public static Attachment json( String content ) {220 return fromText( content, MediaType.JSON_UTF_8 );221 }222 /**223 * Equivalent to {@link com.tngtech.jgiven.attachment.Attachment#Attachment(String, MediaType)}224 * @throws java.lang.IllegalArgumentException if mediaType is not binary225 */226 public static Attachment fromBase64( String base64encodedContent, MediaType mediaType ) {227 if( !mediaType.isBinary() ) {228 throw new IllegalArgumentException( "MediaType must be binary" );229 }230 return new Attachment( base64encodedContent, mediaType );231 }232 /**233 * Whether this attachment is shown showDirectly or not234 * @see com.tngtech.jgiven.attachment.Attachment#showDirectly235 * @since 0.8.2236 */237 public boolean getShowDirectly() {238 return showDirectly == null ? false : showDirectly;239 }240}...

Full Screen

Full Screen

Source:MediaType.java Github

copy

Full Screen

...110 }111 /**112 * Whether this media type is binary or not.113 */114 public boolean isBinary() {115 return binary;116 }117 public boolean isImage() {118 return type == IMAGE;119 }120 /**121 * @return the charset of this media type if one is specified122 * @throws java.lang.IllegalArgumentException if no charset is specified123 */124 public Charset getCharset() {125 if( charset == null ) {126 throw new IllegalArgumentException( "No charset is specified for media type " + this );127 }128 return charset;...

Full Screen

Full Screen

isBinary

Using AI Code Generation

copy

Full Screen

1import com.tngtech.jgiven.attachment.MediaType;2public class Test {3 public static void main(String[] args) {4 System.out.println(MediaType.isBinary("application/json"));5 System.out.println(MediaType.isBinary("application/pdf"));6 System.out.println(MediaType.isBinary("application/zip"));7 }8}

Full Screen

Full Screen

isBinary

Using AI Code Generation

copy

Full Screen

1import com.tngtech.jgiven.attachment.MediaType;2import java.io.File;3public class isBinary {4 public static void main(String[] args) {5 File file = new File("file.txt");6 System.out.println("isBinary: " + MediaType.isBinary(file));7 }8}

Full Screen

Full Screen

isBinary

Using AI Code Generation

copy

Full Screen

1import com.tngtech.jgiven.attachment.MediaType;2public class BinaryTest {3 public static void main(String[] args) {4 System.out.println("Is Binary? "+MediaType.isBinary("text/plain"));5 System.out.println("Is Binary? "+MediaType.isBinary("application/xml"));6 System.out.println("Is Binary? "+MediaType.isBinary("application/zip"));7 }8}

Full Screen

Full Screen

isBinary

Using AI Code Generation

copy

Full Screen

1public class Test {2 public static void main(String[] args) {3 String contentType = "application/octet-stream";4 System.out.println(MediaType.isBinary(contentType));5 }6}

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run JGiven automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful