/* * Tanaguru - Automated webpage assessment * Copyright (C) 2008-2015 Tanaguru.org * * This file is part of Tanaguru. * * Tanaguru is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * Contact us by mail: tanaguru AT tanaguru DOT org */ package org.tanaguru.service.mock; import java.util.*; import org.tanaguru.entity.audit.*; import org.tanaguru.entity.service.audit.ContentDataService; import org.tanaguru.entity.subject.Page; import org.tanaguru.entity.subject.WebResource; import org.tanaguru.sdk.entity.dao.GenericDAO; import org.tanaguru.sdk.entity.factory.GenericFactory; /** * * @author jkowalczyk */ public class MockContentDataService implements ContentDataService { Map<Long, Content> contentMap = new LinkedHashMap<>(); private Long id = 1l; @Override public JavascriptContent findJavascriptContent(Audit audit, String uri) { throw new UnsupportedOperationException("Not supported yet."); } @Override public SSP findSSP(WebResource webresource, String uri) { throw new UnsupportedOperationException("Not supported yet."); } @Override public Long findNumberOfSSPContentFromAudit(Audit audit) { throw new UnsupportedOperationException("Not supported yet."); } @Override public boolean hasAdaptedSSP(Audit audit) { throw new UnsupportedOperationException("Not supported yet."); } @Override public boolean hasContent(Audit audit) { throw new UnsupportedOperationException("Not supported yet."); } @Override public Long getNumberOfOrphanContent(WebResource webResource) { return 0l; } @Override public List<Content> getOrphanContentList(WebResource webResource, int start, int chunkSize) { throw new UnsupportedOperationException("Not supported yet."); } @Override public Long getNumberOfOrphanRelatedContent(WebResource webResource) { return 0l; } @Override public List<Content> getOrphanRelatedContentList(WebResource webResource, int start, int chunkSize) { throw new UnsupportedOperationException("Not supported yet."); } @Override public Long getNumberOfSSPFromWebResource(WebResource webResource, int httpStatusCode) { return 0l; } @Override public Long getNumberOfRelatedContentFromWebResource(WebResource webResource) { return 0l; } @Override public void saveContentRelationShip(SSP ssp, Set<Long> relatedContentIdSet) { throw new UnsupportedOperationException("Not supported yet."); } @Override public void saveAuditToContent(Long idContent, Long idAudit) { throw new UnsupportedOperationException("Not supported yet."); } @Override public Collection<Long> getSSPIdsFromWebResource(Long webResourceId, int httpStatusCode, int start, int chunkSize) { Collection<Long> idList = new ArrayList<>(); for (Content content : contentMap.values()) { if (content.getHttpStatusCode() == httpStatusCode) { idList.add(content.getId()); } } return idList; } @Override public Collection<Long> getRelatedContentIdsFromWebResource(Long webResourceId, int start, int chunkSize) { throw new UnsupportedOperationException("Not supported yet."); } @Override public Content readWithRelatedContent(Long id, boolean isFetchParameters) { return contentMap.get(id); } @Override public Collection<StylesheetContent> getExternalStylesheetFromAudit(Audit audit) { throw new UnsupportedOperationException("Not supported yet."); } @Override public Collection<RelatedContent> getRelatedContentFromAudit(Audit audit) { return new HashSet<>(); } @Override public void deleteContentRelationShip(Long relatedContentId) { throw new UnsupportedOperationException("Not supported yet."); } @Override public Content create() { throw new UnsupportedOperationException("Not supported yet."); } @Override public void create(Content entity) { throw new UnsupportedOperationException("Not supported yet."); } @Override public void delete(Content entity) { throw new UnsupportedOperationException("Not supported yet."); } @Override public void delete(Long key) { throw new UnsupportedOperationException("Not supported yet."); } @Override public void delete(Collection<Content> entitySet) { throw new UnsupportedOperationException("Not supported yet."); } @Override public Collection<Content> findAll() { throw new UnsupportedOperationException("Not supported yet."); } @Override public Content read(Long key) { throw new UnsupportedOperationException("Not supported yet."); } @Override public Content saveOrUpdate(Content entity) { entity.setId(id); contentMap.put(id, entity); id++; return entity; } @Override public Collection<Content> saveOrUpdate(Collection<Content> entitySet) { throw new UnsupportedOperationException("Not supported yet."); } @Override public void setEntityDao(GenericDAO<Content, Long> dao) { throw new UnsupportedOperationException("Not supported yet."); } @Override public void setEntityFactory(GenericFactory<Content> factory) { throw new UnsupportedOperationException("Not supported yet."); } @Override public Content update(Content entity) { throw new UnsupportedOperationException("Not supported yet."); } @Override public void deleteRelatedContentFromContent(Content content) { throw new UnsupportedOperationException("Not supported yet."); } @Override public Collection<Content> getSSPFromWebResource(Long webResourceId, Long startValue, int windowSize, boolean acceptContentWithNullDom) { throw new UnsupportedOperationException("Not supported yet."); } @Override public Collection<Content> getSSPWithRelatedContentFromWebResource(Long webResourceId, Long startValue, int windowSize, boolean acceptContentWithNullDom) { throw new UnsupportedOperationException("Not supported yet."); } @Override public SSP getSSP(String uri) { return new SSPImpl(uri); } @Override public SSP getSSP(String uri, Page page) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public SSP getSSP(Date dateOfLoading, String uri) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public SSP getSSP(Date dateOfLoading, String uri, String sourceCode, Page page) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public SSP getSSP(Date dateOfLoading, String uri, int httpStatusCode) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public SSP getSSP(Date dateOfLoading, String uri, String sourceCode, Page page, int httpStatusCode) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public SSP getSSP(Date dateOfLoading, String uri, String sourceCode, Audit audit, Page page, int httpStatusCode) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public StylesheetContent getStylesheetContent(String uri, SSP ssp) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public StylesheetContent getStylesheetContent(Date dateOfLoading, String uri, SSP ssp, String sourceCode) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public StylesheetContent getStylesheetContent(Date dateOfLoading, String uri, SSP ssp, String sourceCode, int httpStatusCode) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public JavascriptContent getJavascriptContent(Date dateOfLoading, String uri, SSP ssp, String sourceCode) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public JavascriptContent getJavascriptContent(Date dateOfLoading, String uri, SSP ssp, String sourceCode, int httpStatusCode) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public ImageContent getImageContent(Date dateOfLoading, String uri, SSP ssp, byte[] binaryContent) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public ImageContent getImageContent(String uri, SSP ssp) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public ImageContent getImageContent(Date dateOfLoading, String uri, SSP ssp, byte[] binaryContent, int httpStatusCode) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public RelatedContent getRelatedContent(String uri, SSP ssp) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } }