1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
|
/* libcmis
* Version: MPL 1.1 / GPLv2+ / LGPLv2+
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License or as specified alternatively below. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* Major Contributor(s):
* Copyright (C) 2011 SUSE <cbosdonnat@suse.com>
*
*
* All Rights Reserved.
*
* For minor contributions see the git repository.
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPLv2+"), or
* the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
* in which case the provisions of the GPLv2+ or the LGPLv2+ are applicable
* instead of those above.
*/
#ifndef _LIBCMIS_TEST_DUMMIES_HXX_
#define _LIBCMIS_TEST_DUMMIES_HXX_
#include <libcmis/allowable-actions.hxx>
#include <libcmis/document.hxx>
#include <libcmis/folder.hxx>
#include <libcmis/object.hxx>
#include <libcmis/object-type.hxx>
#include <libcmis/property-type.hxx>
#include <libcmis/repository.hxx>
#include <libcmis/session.hxx>
/** This namespace contains dummy classes to simulate the libcmis layer
in the libcmis-c unit tests.
*/
namespace dummies
{
class Session : public libcmis::Session
{
public:
Session( );
~Session( );
virtual libcmis::RepositoryPtr getRepository( ) throw ( libcmis::Exception );
virtual bool setRepository( std::string repositoryId );
virtual std::vector< libcmis::RepositoryPtr > getRepositories( );
virtual libcmis::FolderPtr getRootFolder() throw ( libcmis::Exception );
virtual libcmis::ObjectPtr getObject( std::string id ) throw ( libcmis::Exception );
virtual libcmis::ObjectPtr getObjectByPath( std::string path ) throw ( libcmis::Exception );
virtual libcmis::FolderPtr getFolder( std::string id ) throw ( libcmis::Exception );
virtual libcmis::ObjectTypePtr getType( std::string id ) throw ( libcmis::Exception );
virtual std::vector< libcmis::ObjectTypePtr > getBaseTypes( ) throw ( libcmis::Exception );
virtual std::string getRefreshToken( ) throw ( libcmis::Exception );
virtual void setNoSSLCertificateCheck( bool /*noCheck*/ ) { }
};
class Repository : public libcmis::Repository
{
public:
Repository( );
~Repository( );
};
class PropertyType : public libcmis::PropertyType
{
public:
PropertyType( std::string id, std::string xmlType );
~PropertyType( );
};
/** Dummy for testing the C API for allowable actions. The dummy has only the
following actions defined:
\li \c GetProperties, defined to \c true
\li \c GetFolderParent, defined to \c false
*/
class AllowableActions : public libcmis::AllowableActions
{
public:
AllowableActions( );
~AllowableActions( );
};
class ObjectType : public libcmis::ObjectType
{
private:
std::string m_typeId;
std::vector< std::string > m_childrenIds;
bool m_triggersFaults;
ObjectType( );
void initMembers( );
public:
ObjectType( bool rootType, bool triggersFaults );
~ObjectType( );
virtual boost::shared_ptr< libcmis::ObjectType > getParentType( ) throw ( libcmis::Exception );
virtual boost::shared_ptr< libcmis::ObjectType > getBaseType( ) throw ( libcmis::Exception );
virtual std::vector< boost::shared_ptr< libcmis::ObjectType > > getChildren( ) throw ( libcmis::Exception );
virtual std::string toString( );
};
class Object : public virtual libcmis::Object
{
public:
std::string m_type;
bool m_triggersFaults;
public:
Object( bool triggersFaults, std::string m_type = "Object" );
~Object( ) { }
virtual std::string getId( );
virtual std::string getName( );
virtual std::vector< std::string > getPaths( );
virtual std::string getBaseType( );
virtual std::string getType( );
virtual std::string getCreatedBy( ) { return m_type + "::CreatedBy"; }
virtual boost::posix_time::ptime getCreationDate( );
virtual std::string getLastModifiedBy( ) { return m_type + "::LastModifiedBy"; }
virtual boost::posix_time::ptime getLastModificationDate( );
virtual std::string getChangeToken( ) { return m_type + "::ChangeToken"; }
virtual bool isImmutable( ) { return true; };
virtual libcmis::ObjectPtr updateProperties(
const std::map< std::string, libcmis::PropertyPtr >& properties ) throw ( libcmis::Exception );
virtual libcmis::ObjectTypePtr getTypeDescription( );
virtual libcmis::AllowableActionsPtr getAllowableActions( );
virtual void refresh( ) throw ( libcmis::Exception );
virtual void remove( bool allVersions = true ) throw ( libcmis::Exception );
virtual void move( libcmis::FolderPtr source, libcmis::FolderPtr destination ) throw ( libcmis::Exception );
virtual std::string toString( ) { return m_type + "::toString"; }
virtual void toXml( xmlTextWriterPtr writer );
};
class Folder : public libcmis::Folder, public Object
{
private:
bool m_isRoot;
public:
Folder( bool isRoot, bool triggersFaults );
~Folder( ) { }
virtual libcmis::FolderPtr getFolderParent( ) throw ( libcmis::Exception );
virtual std::vector< libcmis::ObjectPtr > getChildren( ) throw ( libcmis::Exception );
virtual std::string getPath( );
virtual bool isRootFolder( );
virtual libcmis::FolderPtr createFolder( const std::map< std::string, libcmis::PropertyPtr >& properties ) throw ( libcmis::Exception );
virtual libcmis::DocumentPtr createDocument( const std::map< std::string, libcmis::PropertyPtr >& properties,
boost::shared_ptr< std::ostream > os, std::string contentType, std::string filename ) throw ( libcmis::Exception );
virtual std::vector< std::string > removeTree( bool allVersion = true,
libcmis::UnfileObjects::Type unfile = libcmis::UnfileObjects::Delete,
bool continueOnError = false ) throw ( libcmis::Exception );
virtual std::vector< std::string > getPaths( ) { return dummies::Object::getPaths( ); }
virtual std::string toString( ) { return dummies::Object::toString( ); }
};
class Document : public libcmis::Document, public Object
{
private:
bool m_isFiled;
std::string m_contentString;
public:
Document( bool isFiled, bool triggersFaults );
~Document( ) { }
std::string getContentString( ) { return m_contentString; }
virtual std::vector< libcmis::FolderPtr > getParents( ) throw ( libcmis::Exception );
virtual boost::shared_ptr< std::istream > getContentStream( std::string streamId = std::string( ) )
throw ( libcmis::Exception );
virtual void setContentStream( boost::shared_ptr< std::ostream > os, std::string contentType,
std::string fileName, bool overwrite = true ) throw ( libcmis::Exception );
virtual std::string getContentType( );
virtual std::string getContentFilename( );
virtual long getContentLength( );
virtual libcmis::DocumentPtr checkOut( ) throw ( libcmis::Exception );
virtual void cancelCheckout( ) throw ( libcmis::Exception );
virtual libcmis::DocumentPtr checkIn( bool isMajor, std::string comment,
const std::map< std::string, libcmis::PropertyPtr >& properties,
boost::shared_ptr< std::ostream > stream,
std::string contentType, std::string filename ) throw ( libcmis::Exception );
virtual std::vector< libcmis::DocumentPtr > getAllVersions( ) throw ( libcmis::Exception );
virtual std::vector< std::string > getPaths( ) { return dummies::Object::getPaths( ); }
virtual std::string toString( ) { return dummies::Object::toString( ); }
};
}
#endif
|