blob: 6b8fcc2010166891b6362fdbd90cd5495e37ef34 [file] [log] [blame]
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
package ifc.datatransfer;
import lib.MultiMethodTest;
import com.sun.star.datatransfer.XMimeContentType;
import com.sun.star.datatransfer.XMimeContentTypeFactory;
/**
* Testing <code>com.sun.star.datatransfer.XMimeContentTypeFactory</code>
* interface methods :
* <ul>
* <li><code> createMimeContentType()</code></li>
* </ul> <p>
* Test is multithread compilant. <p>
* @see com.sun.star.datatransfer.XMimeContentTypeFactory
*/
public class _XMimeContentTypeFactory extends MultiMethodTest {
public XMimeContentTypeFactory oObj = null;
/**
* First tries to create 'image/jpeg' MIME type and checks that
* valid <code>XMimeContentType</code> object was created.
* Second tries to create type with wrong argument and exception
* throwing is checked. <p>
* Has <b>OK</b> status if in the first case valid object is
* returned and in the second case <code>IllegalArgumentException</code>
* was thrown.
*/
public void _createMimeContentType() {
boolean result = true ;
XMimeContentType type = null;
try {
type = oObj.createMimeContentType("image/jpeg") ;
if (type != null) {
String typeS = type.getFullMediaType() ;
log.println("MediaType = '" + type.getMediaType() + "'") ;
log.println("MediaSubType = '" + type.getMediaSubtype() + "'") ;
log.println("FullMediaType = '" + typeS + "'") ;
result = "image/jpeg".equals(typeS) ;
} else {
log.println("!!! Null was returned !!!") ;
result = false ;
}
} catch (com.sun.star.lang.IllegalArgumentException e) {
log.println("Exception occured : " ) ;
e.printStackTrace(log) ;
result = false ;
}
try {
type = oObj.createMimeContentType("nosuchtype") ;
log.println("!!! No exception was thrown on wrong MIME type !!!") ;
result = false ;
} catch (com.sun.star.lang.IllegalArgumentException e) {
log.println("Right exception was thrown." ) ;
}
tRes.tested("createMimeContentType()", result) ;
}
}