Files
rdkit/Code/JavaWrappers/gmwrapper/src-test/org/RDKit/Chemv2Tests.java
David Cosgrove bc9e4d6478 Support using FreeType for text rendering (#3237)
* First working version with DrawText classes, original functionality only.  No font scaling.

* Added font scaling.

* Added atom colours.

* First stab at freetype text drawing.  A stash prior to major surgery.

* Freetype seems to be working.  On to whack-a-mole.

* Added class flag to atom labels and annotations.

* Another intermim commit whilst re-factoring all string drawing code from MolDraw2D.

* Fixed scaling and implemented max font size.

* Fixed bugs in non-FT Cairo and SVG drawing.

* More re-factoring of drawStrings - now creates StringRwct for each char in all strings.

* More re-factoring of string drawing - all mentions removed from MolDraw2D, I think..

* Working native Cairo, simple tests.

* Working native Cairo, simple tests.

* Padding roumd rectangles.

* Working FT Cairo, FT SVG, native SVG, simple tests.

* Two line labels mostly sorted. Native SVG wrong.

* Two line SVG labels sorted.

* Two line SVG labels sorted.

* Tidied out debug writes.

* Tweaked merge.

* Annotations working, radicals now failing.

* Fixed radicals crash.

* All tests passed for freetype drawings.  Grid drawings not right.

* Fixed bug in grid drawings.

* Better font size.

* Fixed legends in grids.

* Fixed rect intersection bug.

* Tidied up font sizes.

* moldraw2DTest1 all passing.

* All catch tests pass.

* Few rixes, and reactions look ok.

* Added minimum font size.

* Fixed radical drawing when max/min font size hit.

* Interim cmmmit, most test1.cpp working.

* Fixed uninitialised min_font_size_ in DrawText.  Took out use of MolDraw2D::setFontSize() which probably needs to go back in at some point.

* More test1.cpp passing.

* test1.cpp all pass, freetype and non-freetype

* Fixed superscripts hitting min font size in test860.  Made superscripts and subscripts same size.

* testc.pp all pass.

* Fixed bug in freetype text. All testt1.cpp pass.

* All tests passed.d

* Added option for different font.

* Added option for explicit terminal methyls.

* Added option to explicitly not use Freetype in drawers.  Used same in catch_tests.cpp.

* Got sense of NO_FREETYPE wrong in catch_tests.cpp.  D'oh!

* Fixed Python draw tests.

* Added new options to JSON interpreter.

* Fixed scale of text in contoured plots.

* Added optional molecule to grid drawer to help set scale.

* Fixed Python wrappers  for drawing 2D grids .

* Added Greg's CMakeLists.txt

* Moved fonts out of code tree.
Improved handling of font files not found, including logging to rdWarningLog.

* Interim commit.

* Tidied up some namespace std issues.

* Reverted to previous version.
Took out 'using namespace std;'

* update expected java results

* Added multi-line legends.  Also carves out a reserved bit for the legend, and sets the font size so the legend will fit.

* enable annotations on windows with freetype

* Removed stray font file.

* Removed stray font file.

* Re-instanted fontSize() and setFontSize(), though with change of units.

* Added RDK_BUILD_FREETYPE_SUPPORT to cmake.

* re-expose the fontsize controls to python.
document API change w.r.t. font size

* Update ReleaseNotes.md

Co-authored-by: David Cosgrove <david@cozchemix.co.uk>
Co-authored-by: greg landrum <greg.landrum@gmail.com>
2020-06-23 17:31:50 +02:00

266 lines
9.7 KiB
Java

/*
* $Id: Chemv2Tests.java 131 2011-01-20 22:01:29Z ebakke $
*
* Copyright (c) 2010, Novartis Institutes for BioMedical Research Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of Novartis Institutes for BioMedical Research Inc.
* nor the names of its contributors may be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.RDKit;
import static org.junit.Assert.*;
import org.junit.Test;
public class Chemv2Tests extends GraphMolTest {
/* Pickling tests skipped for the time being */
@Test
public void testBasicStuff() {
ROMol m = RWMol.MolFromSmiles("COC(=O)O");
Atom a1 = m.getAtomWithIdx(1);
assertEquals( 8,a1.getAtomicNum() );
assertEquals( 6,m.getAtomWithIdx(2).getAtomicNum() );
Bond b1 = m.getBondWithIdx(1);
assertEquals( Bond.BondType.SINGLE,b1.getBondType() );
assertEquals( Bond.BondType.DOUBLE,m.getBondWithIdx(2).getBondType() );
assertEquals( Bond.BondType.SINGLE,m.getBondBetweenAtoms(0, 1).getBondType() );
}
@Test
public void testEditingPersisting() {
RWMol m = RWMol.MolFromSmiles("COC(=C)O");
Atom a1 = m.getAtomWithIdx(3);
assertEquals("bad atom order",6, a1.getAtomicNum());
a1.setAtomicNum(7);
assertEquals("bad atom order",7, a1.getAtomicNum());
assertEquals("atom order not stored",7, m.getAtomWithIdx(3).getAtomicNum());
}
@Test
public void testSMARTSBasics () {
ROMol m = RWMol.MolFromSmiles("COC(=O)O");
ROMol p = RWMol.MolFromSmarts("CO");
assertTrue(m.hasSubstructMatch(p));
ROMol p2 = RWMol.MolFromSmarts("CS");
assertFalse(m.hasSubstructMatch(p2));
assertEquals( 2,p.getNumAtoms() );
assertEquals( 1,p.getNumBonds() );
assertTrue(m.hasSubstructMatch(p));
Match_Vect_Vect matches = m.getSubstructMatches(p);
assertEquals( 3,matches.size() );
Match_Vect match = matches.get(0);
assertEquals("bad match length", 2, match.size() );
matches = m.getSubstructMatches(p, false);
assertEquals( 3,matches.size() );
match = matches.get(0);
assertEquals("bad match length", 2, match.size() );
p = RWMol.MolFromSmarts("COC");
assertTrue(m.hasSubstructMatch(p));
assertEquals( 3,p.getNumAtoms() );
assertEquals( 2,p.getNumBonds() );
assertTrue(m.hasSubstructMatch(p));
matches = m.getSubstructMatches(p);
assertEquals( 1,matches.size() );
matches = m.getSubstructMatches(p, false);
assertEquals( 2,matches.size() );
}
@Test
public void testDataGetSetSuccess() {
ROMol m = RWMol.MolFromSmiles("CCOC");
m.setProp("foo", "3");
String v = m.getProp("foo");
assertEquals("3",v);
}
@Test(expected=KeyErrorException.class)
public void testDataGetSetFailure() {
ROMol m = RWMol.MolFromSmiles("CCOC");
m.getProp("monkey");
}
@Test
public void testIssue399() {
ROMol m = RWMol.MolFromSmiles("[C@H]1(C)CO1");
m.compute2DCoords();
Conformer c = m.getConformer();
m.WedgeMolBonds(c);
assertEquals( Bond.BondDir.BEGINDASH,m.getBondWithIdx(0).getBondDir() );
assertEquals( Bond.BondDir.NONE,m.getBondWithIdx(1).getBondDir() );
assertEquals( Bond.BondDir.NONE,m.getBondWithIdx(2).getBondDir() );
assertEquals( Bond.BondDir.NONE,m.getBondWithIdx(3).getBondDir() );
}
@Test
public void test2DWithSetAtomLocs() {
ROMol m = RWMol.MolFromSmiles("C[C@H]1CO1");
Atom a0 = m.getAtomWithIdx(0);
Int_Point2D_Map coords = new Int_Point2D_Map();
coords.set((int) a0.getIdx(), new Point2D(1.0, 1.5));
RDKFuncs.setPreferCoordGen(false);
long confIdx = m.compute2DCoords(coords);
Conformer c = m.getConformer((int) confIdx);
assertEquals(1.0, c.getAtomPos(a0.getIdx()).getX(), defaultDoubleTol);
assertEquals(1.5, c.getAtomPos(a0.getIdx()).getY(), defaultDoubleTol);
}
@Test
public void testMatchingDepictions() {
ROMol template = RWMol.MolFromSmiles("c1nccc2n1ccc2");
template.compute2DCoords();
ROMol m = RWMol.MolFromSmiles("c1cccc2ncn3cccc3c21");
ROMol patt = RWMol.MolFromSmarts("*1****2*1***2");
m.generateDepictionMatching2DStructure(template,-1,patt);
// System.out.print(template.MolToMolBlock());
// System.out.print(m.MolToMolBlock());
Conformer c1 = template.getConformer();
Conformer c2 = m.getConformer();
assertEquals(c1.getAtomPos(0).getX(), c2.getAtomPos(6).getX(), defaultDoubleTol);
assertEquals(c1.getAtomPos(0).getY(), c2.getAtomPos(6).getY(), defaultDoubleTol);
assertEquals(c1.getAtomPos(0).getZ(), c2.getAtomPos(6).getZ(), defaultDoubleTol);
}
@Test
public void testGenerateSVG() {
ROMol m = RWMol.MolFromSmiles("[C@H]1(C)CO1");
m.compute2DCoords();
Conformer c = m.getConformer();
m.WedgeMolBonds(c);
String svg=m.ToSVG(8,50);
assertTrue(svg.indexOf("<svg")>-1);
assertTrue(svg.indexOf("</svg>")>-1);
}
@Test
public void testMolDraw2DSVG() {
ROMol m = RWMol.MolFromSmiles("[C@H]1(C)CO1");
m.compute2DCoords();
Conformer c = m.getConformer();
m.WedgeMolBonds(c);
MolDraw2DSVG drawer = new MolDraw2DSVG(300, 300);
drawer.drawMolecule(m);
drawer.finishDrawing();
String svg = drawer.getDrawingText();
assertTrue(svg.indexOf("<svg") > -1);
assertTrue(svg.indexOf("</svg>") > -1);
}
@Test
public void testMolDraw2DSVGSingleAtomMol() {
ROMol m = RWMol.MolFromSmiles("C");
m.compute2DCoords();
Conformer c = m.getConformer();
m.WedgeMolBonds(c);
MolDraw2DSVG drawer = new MolDraw2DSVG(300, 300);
drawer.drawMolecule(m);
drawer.finishDrawing();
String svg = drawer.getDrawingText();
assertTrue(svg.indexOf("<svg") > -1);
assertTrue(svg.indexOf("</svg>") > -1);
}
@Test
public void testPrepareMolForDrawing() {
RWMol m = RWMol.MolFromSmiles("c1ccccc1");
RDKFuncs.prepareMolForDrawing(m);
assertEquals(m.getNumConformers(), 1);
assertTrue(m.getBondBetweenAtoms(0, 1).getBondType() !=
Bond.BondType.AROMATIC);
assertTrue(m.getBondBetweenAtoms(0, 1).getIsAromatic());
MolDraw2DSVG drawer = new MolDraw2DSVG(300, 300);
drawer.drawMolecule(m);
drawer.finishDrawing();
String svg = drawer.getDrawingText();
assertTrue(svg.indexOf("<svg") > -1);
assertTrue(svg.indexOf("</svg>") > -1);
}
@Test
public void testMolDraw2DHighlight() {
RWMol m = RWMol.MolFromSmiles("CCCCCOC");
RDKFuncs.prepareMolForDrawing(m);
Int_Vect hats = new Int_Vect();
hats.add(0);
hats.add(1);
hats.add(2);
Int_Vect hbs = new Int_Vect();
hbs.add(0);
hbs.add(1);
hbs.add(2);
ColourPalette atCs = new ColourPalette();
atCs.set(0, new DrawColour(1, 1, 0));
atCs.set(1, new DrawColour(1, 0, 1));
atCs.set(2, new DrawColour(0, 1, 1));
ColourPalette bCs = new ColourPalette();
MolDraw2DSVG drawer = new MolDraw2DSVG(300, 300);
drawer.drawMolecule(m, "THE_LEGEND", hats, hbs, atCs, bCs);
drawer.finishDrawing();
String svg = drawer.getDrawingText();
// System.out.print(svg);
assertTrue(svg.indexOf("<svg") > -1);
assertTrue(svg.indexOf("</svg>") > -1);
assertTrue(svg.indexOf("fill:#FFFF00;") > -1);
assertTrue(svg.indexOf("fill:#FF00FF;") > -1);
assertTrue(svg.indexOf("fill:#00FFFF;") > -1);
// default line color:
assertTrue(svg.indexOf("stroke:#FF7F7F;") > -1);
}
@Test
public void testMolDraw2DContours() {
// really just a test to make sure this can be called
RWMol m = RWMol.MolFromSmiles("CCCCCOC");
RDKFuncs.prepareMolForDrawing(m);
Point2D_Vect cents = new Point2D_Vect();
Double_Vect weights = new Double_Vect();
Double_Vect widths = new Double_Vect();
for(int i=0;i<m.getNumAtoms();++i){
cents.add(new Point2D(m.getConformer().getAtomPos(i)));
weights.add(1.0);
widths.add(0.4);
}
MolDraw2DSVG drawer = new MolDraw2DSVG(300, 300);
drawer.clearDrawing();
RDKFuncs.ContourAndDrawGaussians(drawer,cents,weights,widths,10);
drawer.drawOptions().setClearBackground(false);
drawer.drawMolecule(m);
drawer.finishDrawing();
String svg = drawer.getDrawingText();
System.out.print(svg);
}
public static void main(String args[]) {
org.junit.runner.JUnitCore.main("org.RDKit.Chemv2Tests");
}
}