82 lines
3.8 KiB
Python
82 lines
3.8 KiB
Python
# -*- coding: utf-8 -*-
|
|
# ***************************************************************************
|
|
# * Copyright (c) 2019 sliptonic <shopinthewoods@gmail.com> *
|
|
# * *
|
|
# * This program is free software; you can redistribute it and/or modify *
|
|
# * it under the terms of the GNU Lesser General Public License (LGPL) *
|
|
# * as published by the Free Software Foundation; either version 2 of *
|
|
# * the License, or (at your option) any later version. *
|
|
# * for detail see the LICENCE text file. *
|
|
# * *
|
|
# * 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 Library General Public License for more details. *
|
|
# * *
|
|
# * You should have received a copy of the GNU Library General Public *
|
|
# * License along with this program; if not, write to the Free Software *
|
|
# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
|
|
# * USA *
|
|
# * *
|
|
# ***************************************************************************
|
|
|
|
from typing import cast
|
|
import os
|
|
import uuid
|
|
import pathlib
|
|
import FreeCAD
|
|
from CAMTests.PathTestUtils import PathTestWithAssets
|
|
from Path.Tool.library import Library
|
|
from Path.Tool.shape import ToolBitShapeBullnose
|
|
from Path.Tool.toolbit import ToolBitEndmill, ToolBitBullnose
|
|
|
|
|
|
TOOL_DIR = pathlib.Path(os.path.realpath(__file__)).parent.parent / "Tools"
|
|
SHAPE_DIR = TOOL_DIR / "Shape"
|
|
BIT_DIR = TOOL_DIR / "Bit"
|
|
|
|
|
|
class TestPathToolBit(PathTestWithAssets):
|
|
def testGetToolBit(self):
|
|
"""Find a tool bit from file name"""
|
|
toolbit = self.assets.get("toolbit://5mm_Endmill")
|
|
self.assertIsInstance(toolbit, ToolBitEndmill)
|
|
self.assertEqual(toolbit.id, "5mm_Endmill")
|
|
|
|
def testGetLibrary(self):
|
|
"""Find a tool library from file name"""
|
|
library = self.assets.get("toolbitlibrary://Default")
|
|
self.assertIsInstance(library, Library)
|
|
self.assertEqual(library.id, "Default")
|
|
|
|
def testBullnose(self):
|
|
"""Test ToolBitBullnose basic parameters"""
|
|
shape = self.assets.get("toolbitshape://bullnose")
|
|
shape = cast(ToolBitShapeBullnose, shape)
|
|
|
|
bullnose_bit = ToolBitBullnose(shape, id="mybullnose")
|
|
self.assertEqual(bullnose_bit.get_id(), "mybullnose")
|
|
|
|
bullnose_bit = ToolBitBullnose(shape)
|
|
uuid.UUID(bullnose_bit.get_id()) # will raise if not valid UUID
|
|
|
|
# Parameters should be loaded from the shape file and set on the tool bit's object
|
|
self.assertEqual(bullnose_bit.obj.Diameter, FreeCAD.Units.Quantity("5.0 mm"))
|
|
self.assertEqual(bullnose_bit.obj.FlatRadius, FreeCAD.Units.Quantity("1.5 mm"))
|
|
|
|
def testToolBitPickle(self):
|
|
"""Test if ToolBit is picklable"""
|
|
import pickle
|
|
|
|
shape = self.assets.get("toolbitshape://bullnose")
|
|
shape = cast(ToolBitShapeBullnose, shape)
|
|
bullnose_bit = ToolBitBullnose(shape, id="mybullnose")
|
|
try:
|
|
pickled_bit = pickle.dumps(bullnose_bit)
|
|
unpickled_bit = pickle.loads(pickled_bit)
|
|
self.assertIsInstance(unpickled_bit, ToolBitBullnose)
|
|
self.assertEqual(unpickled_bit.get_id(), "mybullnose")
|
|
# Add more assertions here to check if other attributes are preserved
|
|
except Exception as e:
|
|
self.fail(f"ToolBit is not picklable: {e}")
|